You are here
Add new comment
Reverse Order PDF files
Submitted by tomshumpert on Tue, 11/13/2012 - 07:43
Need to Reverse the order of your PDF file for plotting?
There is no command to reverse the order of the pages in Acrobat.
You have to:
Run this from the JavaScript Console (Ctrl+J):
for (i = this.numPages - 1; i >= 0; i--) this.movePage(i);
Hope this Helps.



