On 11/28/06, Paul Hastings <[EMAIL PROTECTED]> wrote: > i need to burn a PDF from some stuff (images & their vector children) > that's represented on-screen. using andrew trice's nifty bitmap > capture technique, works fine. but in some instances i need to > re-do/rescale some of the images, etc. which i need to do "off-screen" > (or wherever) as the user doesn't need to see this.
oh boy i get to answer my own question ;-) it seems the image simply wasn't getting loaded fast enough, adding a COMPLETE event listener seems to have done the trick: newMapImage.addEventListener(flash.events.Event.COMPLETE,burnPDF);

