although I am using custom classes i.e. var headC:gridHead = new gridHead()

maybe that is what it is referring to????


-----Original Message-----
From: flashcoders-boun...@chattyfig.figleaf.com on behalf of Hans Wichman
Sent: Thu 10/4/2012 1:33 PM
To: Flash Coders List
Subject: Re: [Flashcoders] printJob
 
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

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

Reply via email to