A different print question

ok, figured out what my problem with the print function was before, I needed to put the x & y coordinates in.

but now I’m having a problem getting the thing to print completely on a pc. Everything prints fine on my mac, but some (but not all) static & dynamic text / movie clips won’t print. I’d say about half and half.

so my question is, is there any sort of extra coding that I need to apply to my code to make it print on a pc?

Thanks

here’s my code


_root.navi.printdesign.onRelease = function() {
myPrintjob_pj = new PrintJob();
myPrintjob_pj.start();
myPrintjob_pj.addPage(3,{xMin: 0, xMax: 700, yMin: 0, yMax: 500});
myPrintjob_pj.send();
delete myPrintJob_pj;
};