Copy link to clipboard
Copied
I am trying to print using an action button and it wants to print the whole document. How can I set it up to print just selected pages?
Copy link to clipboard
Copied
You can use JavaScript. For example, to print the second through fifth pages, the Mouse Up script for a button could be:
// Mouse Up script for button
print({nStart: 1, nEnd: 4});
There are a number of other options you can use, as detailed in the Acrobat JavaScript reference.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now