[flexcoders] Re: FlexPrintJob - Very Hit Miss

2008-09-08 Thread thatstephen
Hi, Thank you for this advice. I have a similar problem and have tried to follow your advice. However I have tried everything I can think of to make Flex and its asynchronous events wait for the image load before adding the next rendered page to the printjob using addObject. How can you make

RE: [flexcoders] Re: FlexPrintJob - Very Hit Miss

2008-09-08 Thread Battershall, Jeff
, September 08, 2008 11:54 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: FlexPrintJob - Very Hit Miss Hi, Thank you for this advice. I have a similar problem and have tried to follow your advice. However I have tried everything I can think of to make Flex and its asynchronous events

RE: [flexcoders] Re: FlexPrintJob - Very Hit Miss

2008-09-08 Thread Alex Harui
Due to a bug in FlashPlayer, you can't wait. Preload images before starting the print job From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thatstephen Sent: Monday, September 08, 2008 8:54 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: FlexPrintJob - Very

[flexcoders] RE: FlexPrintJob - Very Hit Miss

2008-08-29 Thread Alex Harui
Are you directly printing the loaded bitmap or passing it into SWFLoader/Image? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, Jeff Sent: Friday, August 29, 2008 3:58 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] FlexPrintJob - Very Hit Miss

RE: [flexcoders] RE: FlexPrintJob - Very Hit Miss

2008-08-29 Thread Battershall, Jeff
on a normal printer). Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Friday, August 29, 2008 1:50 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] RE: FlexPrintJob - Very Hit Miss Are you directly

[flexcoders] Re: FlexPrintJob - Very Hit Miss

2008-08-29 Thread Dmitri Girski
Hi Jeff, Your image simply is not ready to be rendered. It could be not loaded yet, it could be loaded, but positioned well off the Vbox etc. You have to wait for 2 events for this image: -creation Complete -updateComplete This would guarantee in 90% that your image will be printed. If you want