These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Command to Print Page Range in PDF

lwf928
Registered: Aug 26 2008
Posts: 7

I have a 100+ page PDF and I would like to insert print buttons in various places which would print only a range of pages in the document. When I do a link, I can put in a file/print command but it doesn't let me insert a range.

Any ideas?

My Product Information:
Acrobat Pro 9.0, Windows
gkaiseril
Expert
Registered: Feb 23 2006
Posts: 4307
Why not use a button field with JavaScript?

this.print({nStart: 0, nEnd: 1}); // print pages one and two

George Kaiser