難しい印刷を自動化しようとしています。
次のように、プリンターのアプリにアクセスして、ドキュメントのコピーを1部印刷できます。
tell application "hp LaserJet 2300 series (BDB806)" --my printer's app, could be any other model
print myFile
end tell
このスニペットは機能します。
しかし、複数部数を印刷しようとすると難しくなります。プリンターのアプリ辞書によると、次のようにして実現できるはずです。
tell application "hp LaserJet 2300 series (BDB806)"
print myFile with properties {copies:n} -- n being an integer
end tell
しかし、これはうまくいきません。
私が間違っていることを教えてください。