Answered
Code for printing specific page
Hello,
I am looking for a javascript code that can send a specific page to the printer.
The people who will use it all have acrobat reader DC
I have foud the code below but is doesn't work for printing the first page.
var pp = this.getPrintParams();
pp.printRange = [1];
this.print(pp);
