-
-
Save jalbertbowden/833d25ce308d17dd36bf to your computer and use it in GitHub Desktop.
InDesign (Java)Script to Get the Next Page
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
| function getNextPage(page) { | |
| var dok = page.parent.parent; | |
| var nextPage = dok.pages[page.documentOffset+1]; | |
| if (!nextPage.isValid) { | |
| nextPage = dok.pages.add(); | |
| nextPage.appliedMaster = page.appliedMaster; | |
| } | |
| return nextPage; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment