複数のInDesignファイルをまとめてほうりこんで、家に帰る。
あとはMacが自動で開いてプリント、できたら閉じて、また次。
そんな事したくて作ってみました。
ソースこんだけですが
メモ。
環境はMac OS 10.6.8
Adobe InDesign CS3
プリンタのプリセットはInDesignで先に作り、このスクリプトのプリセット名を書き換えればドロップレットが完成。
on open printList
set printJob to "A4T" --プリントプリセットを指定 例:"A3よこ"
tell application "Adobe InDesign CS3"
repeat with thisFile in printList --ファイル数分繰り返す
activate
open thisFile --ドキュメントを開く
tell active document
print using printJob without print dialog --ダイアログ出さない
close thisFile saving no -- ドキュメントを保存しないで閉じる
end tell
end repeat
end tell
end open
JUGEMテーマ:graphic design