Created
July 4, 2022 15:40
-
-
Save simongcc/e65afdcb550088d1492d186fcef7b49c to your computer and use it in GitHub Desktop.
Reverse page order script for Adobe Acrobat Pro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Tested in Acrobat Pro 2016 | |
for (i = this.numPages - 1; i >= 0; i--) | |
{ | |
this.movePage(i); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment