私は現在macOS SierraでAdobe Acrobat Pro DC 2015.23を使用しています。 私の目標は、このようなことを行うAppleScriptを作成することです:AppleScriptでAcrobatでpdf-xとしてpdfを保存する
- すべてやるPDFファイルを開きます
- 保存PDF-X形式にこのファイル
- 閉じるファイル
私はAppleScriptを作成し、手順は、私はどのように保存中に使用するPDF標準で選択するためのドキュメントを見つけることができません。
私はこれをしたい場合は、手動で私は、次の手順でください:Adobe Acrobatの中
- オープンPDF
- PDF標準メニュー
- をクリック(PDF/Xとして保存)を選択します
- を押して保存します
保存中にPDF/X規格を設定する方法が問題です。
あなたが指摘しているかもしれませんが私のスクリプト
on is_running(appName)
tell application "System Events" to (name of processes) contains appName
end is_running
set theFiles to choose file with prompt "Select the files" of type {"pdf"} with multiple selections allowed
set aaRunning to is_running("Adobe Acrobat")
tell application "Adobe Acrobat"
repeat with theFile in theFiles
open theFile without dialogs
save active doc to theFile
close active doc
end repeat
if not aaRunning then
quit
end if
end tell