PrintJob Landscape 2004-02-25 - By Merrill, Jason
Back I asked this on Flashcoders but didn't get a single response. Maybe its because its not possible (but it would be nice if someone could tell me "its not possible")
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.
Oh, and if it helps, here is my code for the print job which works swimmingly:
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; }
Thanks in advance,
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 -- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------ Lower Prices for Certified Training! Check out new lower prices for Certified Macromedia Training from Fig Leaf Software. Expand your skill set with courses in ColdFusion, Flash, Rich Internet Applications and .NET in the new year. Fig Leaf Software provides the highest caliber instruction at our training centers in Washington D.C., Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location.
Get the details at http://training.figleaf.com/ -- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- -- To unsubscribe, e-mail: flashnewbie-unsubscribe@(protected) For additional commands, e-mail: flashnewbie-help@(protected)
|
|