So I have a sprite that has a child sprite with some objects in it... I am trying to print it with code like:
if ( !printJob.start() ) return; var origWid:Number = clip.width; clip.width = printJob.pageWidth; clip.scaleY = clip.scaleX; printJob.addPage(clip, new Rectangle(0, 0, printJob.pageWidth, printJob.pageHeight)); printJob.send(); printJob = null; clip.width = origWid; clip.scaleY = clip.scaleX; My issue is that things do not always print - I get this error: Warning: Filter will not render. The DisplayObject's filtered dimensions (6699, 5824) are too large to be drawn. Any thoughts on why it is not printing?
_______________________________________________ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders