I have the following

var pageCount:Number = 0;
var my_pj:PrintJob = new PrintJob();

if (my_pj.start()) {
                                
        my_pj.addPage(target_mc,
                        xMin:0,xMax:700,yMin:0,yMax:500},
                        {printAsBitmap:true},
                         1);
                        
}
                        
                        if (pageCount > 0)
                        {
                                my_pj.send();
                        }
                        
                        delete my_pj;

The print job created ok.

However I have a problem when it actually print - the target_mc actually
has 2 nested clips inside it.

The print out comes out completely skewed by about 30-40 degrees, and
half the graphic is inverted. There is also NO color. I've tried 3
printers, and they all do the same.

If I passed a target clip which DOESN'T have a nested clip (ie
target_mc.someclip_mc) it all prints fine.

Any one shed any light on my frustrations.

Pete


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

Reply via email to