  | |  | PrintJob and Landscape? | PrintJob and Landscape?
2004-02-24 - By Merrill, Jason
Back I 'm using the PrintJob object and its working great - but was wondering - I know it might be a long shot, but is there any way to tell the printer to orient the print to landscape? I know this might not be possible since this is when the print driver takes over, but does the PrintJob object support that?
I don 't think I can rotate the clip being printed because of my stage proportions and what that would look like to the user, but if anyone has any other ideas, that would be great. Otherwise, I guess I 'll just add some wording before they hit my print button.
Thanks in advance,
Oh, and if it helps, here is my code for the print job:
on(release){
CertPrint = new PrintJob();
printStarted = CertPrint.start();
if(printStarted) {
CertPrint.addPage(this, {xMin:0,xMax:740,yMin:30,yMax:375}, {printAsBitmap:false}, 16);
CertPrint.send();
}
delete CertPrint;
}
Jason Merrill
ICF Consulting Government e-Learning Solutions
icfconsulting.com
NOTICE:
This message is for the designated recipient only and may contain privileged or confidential information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of this e-mail by you is prohibited.
=-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --
Supported by Fig Leaf Software
=-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --
Be sure to check the archives and the wiki:
http://chattyfig.figleaf.com/
=-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --
http://chattyfig.figleaf.com/cgi-bin/ezmlm-cgi?1:mss:105100
=-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --
To unsubscribe send a blank e-mail to:
Normal Mode: flashcoders-unsubscribe@(protected)
Digest Mode: flashcoders-digest-unsubscrive@(protected)
|
|
 |