インデザインでページにセクションを追加。
ちょっと使う機会があったので紹介します。
あまり使用する機会はないと思いますが、
とりあえず参考までに。
▼AppleScriptコード(指定したページに任意のページを入れる。)
1 2 3 4 5 6 7 8 9 10 |
set PageNumber to 1 --何番目のページ set afterPage to 10 --変更後のページ tell application "Adobe InDesign CS6" tell document 1 try make section with properties {continue numbering:false, page start:page PageNumber, page number start:afterPage, include section prefix:false, page number style:arabic} end try end tell end tell |
▼JavaScriptコード(全ページにセクション追加)
1 2 3 4 5 6 7 8 9 10 11 12 |
var myDoc = app.activeDocument; myDoc.documentPreferences.allowPageShuffle = false; //ドキュメントページの移動を許可しない。 for (var i=0; i<=myDoc.pages.length - 1; i++) { var myPage = myDoc.pages[i]; var mySection= {continueNumbering:false, pageNumberStart:1} ; try{ myDoc.sections.add(myPage, mySection); }catch(e){ //alert(i); } } |
参考情報
https://secure.macscripter.net/viewtopic.php?pid=128765