Copy link to clipboard
Copied
Good evening, I made a script to print specific pages in a range from my document, except that the page information being printed are all different dimensions on the paper.
Here is my script:
print.this(false, 0, 6);
print.this(false, 7, 23);
Is there a sepcific printer setting I must use, to make the pages print out correctly? Any help would be wonderful, I intended the pages to print out, "fitted."
Thank you!
You can specify the bShrinkToFit parameter as true, like this:
this.print({bUI: false, nStart: 0, nEnd: 6, bShrinkToFit: true});
Copy link to clipboard
Copied
You can specify the bShrinkToFit parameter as true, like this:
this.print({bUI: false, nStart: 0, nEnd: 6, bShrinkToFit: true});
Copy link to clipboard
Copied
All the pages are now printing in the correct sizes, thank you!