Using PrintArea when printing?
Have never had to use printArea before... and not entirely sure I need to now, but am having some issues trying to print an image to a large format, roll fed, printer (HP DesignJet). The printer prints at 24" wide... It reports as so:
trace(printJob.pageWidth, printJob.pageHeight);
1700,2564
So, I do the standard: page.width = printJob.pageWidth; page.scaleY = page.scaleX;
It's a square so when I trace page.width, page.height I get 1700,1700... so far so good.
However when I print, I get a good amount of the image cropped - on the right and bottom.
Tried setting printArea but it's not helping... and based on the docs I wouldn't think I need it:
If you omit the printArea parameter, or if it is passed incorrectly, the full area of the sprite parameter is printed.