# A different print question

**URL:** https://forum.kirupa.com/t/a-different-print-question/156759
**Category:** Uncategorized
**Created:** [July 27, 2005, 8:48pm UTC](https://forum.kirupa.com/t/a-different-print-question/156759 "2005-07-27T20:48:32Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![bleach20xx](https://avatars.discourse-cdn.com/v4/letter/b/45deac/32.png) [@bleach20xx](https://forum.kirupa.com/u/bleach20xx)
#### Post date: [July 27, 2005, 8:48pm UTC](https://forum.kirupa.com/t/a-different-print-question/156759/1 "2005-07-27T20:48:32Z")

</div>

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

```auto

_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;
};

```
