Jump to content

JSPrint


hackalive

Recommended Posts

Hi guys I am using the firefox plugin JSPRINT, but my margins are not working out :(, any ideas why this is not working?

 

This is my code (so should do A4 page)

<script type="text/javascript">
// set the printer (based on your printer name)
jsPrintSetup.setPrinter('TX820 Artisan830(Network)');

jsPrintSetup.setOption('paperHeight', 9);
jsPrintSetup.setOption('paperWidth', 9);
jsPrintSetup.setOption('shrinkToFit', 0);
jsPrintSetup.setOption('numCopies', 1);

// set top margins in millimeters
   jsPrintSetup.setOption('marginTop', 0);
   jsPrintSetup.setOption('marginBottom', 0);
   jsPrintSetup.setOption('marginLeft', 0);
   jsPrintSetup.setOption('marginRight', 0);

// Set Headers & Footers
jsPrintSetup.setOption('headerStrLeft', '');
jsPrintSetup.setOption('headerStrRight', '');
jsPrintSetup.setOption('footerStrLeft', '');
jsPrintSetup.setOption('footerStrRight', '');

// sets silent printing (skip the print settings dialog box)
jsPrintSetup.setSilentPrint(true);

// print the page	
jsPrintSetup.print();

</script>

<body style="padding:0; margin:0; width:210mm; height: 297mm;">
<div style="margin: 15mm 15mm 15mm 15mm; border:1px solid #000000;">
</div>
</body>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.