Print Warning:Warning: Filter will not render. The DisplayObject's filtered dimensions (16008, 6009) are too large to be drawn.
I understand that the dimensions of that are way too big to be drawn, but my question is why is it doing that? I have an external swf file that I wanted printed. When I go to print it I get two warning like this, but it seems to print properly. The print code is below, and if you want to see the actual swf and its code let me know, I can post that as well. Thanks in advance to anyone who helps me figure this one out.
case "print_el":
var p:PrintJob = new PrintJob;
if (p.start())
{
p.addPage(PrintableEL);
p.send();
}
break;
Note: The PrintableEL is a datagrid on a Sprite.
