PDF書き出しから印刷を自動化

下記スクリプトは alias a1 が指定されていないので動きませんが、
私の現場ではもう少し書き加えて書き出し・両面プリント・
サーバーへのバックアップまでを自動化しています。
アクロバットのはバージョン8です。UI element の数値が違うので、
他のバージョンでは動きません。
バージョン8用参考画像(クリックで拡大)

「自動回転と中央配置」を制御したい場合は

tell applicationSystem Events

tell windowプリントof processAdobe Acrobat Professional

tell UI element 1 of UI element 6

click UI element 1 of UI element 17

end tell

end tell

end tell












以下今回のスクリプト。興味がある方は動くようにしてみましょう。

on pdf01()

tell document 1 of applicationAdobe InDesign CS2_J

export format PDF type to alias a1 with showing options

end tell

print1(a1) of me

end pdf01

on print1(a1)

tell applicationAdobe Acrobat Professional

activate

close documents

end tell

tell applicationSystem Eventsto repeat until (count (every window of processAdobe Acrobat Professional“)) = 0

end repeat

tell applicationAdobe Acrobat Professionalto open alias a1

tell applicationSystem Events

click menu itemプリント…of menu 1 of menu bar item 3 of menu bar 1 of processAdobe Acrobat Professional

delay 3

tell windowプリントof processAdobe Acrobat Professional

tell UI element 1 of UI element 6

set value of UI element 6 to2” —-印刷部数の設定

end tell

click buttonプリントof UI element 5

end tell

end tell

delay 3

tell applicationSystem Eventsto repeat until (count (every window of processAdobe Acrobat Professional“)) = 1

end repeat

try

tell applicationAdobe Acrobat Professionalto close documents

end try

end print1