Copy link to clipboard
Copied
Good morning,
I would like to create a print button which could print only the preselected pages. My PDF document has more than 150 pages. For example I want to print only pages 12 to 17. Is there a solution through a preprogrammed button or a script? If you already have a button template that allows you to print only the selected pages and not the entire document, I would be very happy to share it.
Copy link to clipboard
Copied
At the page thumbnailes select the pages and use the menu entry "Print Pages..."
Copy link to clipboard
Copied
Thank you for your answer, you and I know very well how to use page thumbnails, but the majority of users don't. Is there a print button that we can program to print specific pages, example page 7-11 on a 150 page document?
Copy link to clipboard
Copied
There is no such print button in Acrobat Reader.
Copy link to clipboard
Copied
You can create a button on page 7 whose action is 'menu item: run java script'. The java script is 'this.print(false,this.pageNum, 10,false);' where 'pageNum, 10' is one less than the last page (11) you want to print. This generates a range of pages from page 7 to 11 that you can then print to the default or other printer.