[flexcoders] Re: Printing Images with printJob.addObject

2009-05-15 Thread pliechty
You can do printing with dynamic images, you just have to wait until the images are loaded before adding them to the printjob. Listen for the Event.COMPLETE event to know when the images are loaded. I am doing it and it works fine. --- In flexcoders@yahoogroups.com, bnuenemann bened...@...

[flexcoders] Re: Printing Images with printJob.addObject

2006-11-23 Thread bnuenemann
Sorry, now i understand: explicit embedding is working in Print-Templates: ... mx:Script ![CDATA[ import mx.core.*; [Embed(source=myimage.png)] [Bindable] public var imgCls:Class; ]] /mx:Script ... mx:Image height=60 id=myimage width=30% source={imgCls}/ ... Thanks ---