Skip to content

Instantly share code, notes, and snippets.

@jalbertbowden
Forked from grefel/getNexPage.js
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save jalbertbowden/833d25ce308d17dd36bf to your computer and use it in GitHub Desktop.

Select an option

Save jalbertbowden/833d25ce308d17dd36bf to your computer and use it in GitHub Desktop.
InDesign (Java)Script to Get the Next Page
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