Copy link to clipboard
Copied
Hi,
Can anyone understand how to put on Adobe Reader to print corretly multiple pages on a non duplex printer?
I tried selecting 4 pages per sheet and then odd pages only, then picking up the printed pages, turning around and putting back in, then selecting the same modes, execpt this time even pages only.
Problem is, by selecting 4 pages then odd only, instead of the program showing me 1,2,3,4 then 9,10,11,12 and so on, it showed me 1,3,5,7 then 9,11,13,15.
Does anyone know how to set up in the printing selection so that it prints the first way mentioned in the previous paragraph instead of the second one?
Copy link to clipboard
Copied
<moved from enterprise&teams>
Copy link to clipboard
Copied
This requires using a script. You can use this code to achieve the former:
var pageRanges = [];
for (var i=0; i<this.numPages-4; i+=8) {
pageRanges.push([i, i+3]);
}
var pp = this.getPrintParams();
pp.printRange = pageRanges;
this.print(pp)
Change the first value of i in the loop from 0 to 4 to achieve the latter.