because your clip has a filter and its filtered dimensions are too large?

On 4-10-2012 19:25, Ted Lehr wrote:
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

_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to