Skip to content

Instantly share code, notes, and snippets.

@UskeS
Created April 6, 2023 04:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UskeS/2ee6d925d11f2bcc38c696902e6c9ece to your computer and use it in GitHub Desktop.
Save UskeS/2ee6d925d11f2bcc38c696902e6c9ece to your computer and use it in GitHub Desktop.
[InDesign]PDF書き出しページ範囲をリセットするスクリプト
//@targetengine "PDFpageRangeReset"
app.addEventListener("afterOpen", myFunc, false);
function myFunc(e) {
app.pdfExportPreferences.pageRange = "0";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment