我正在尝试自动化一些硬打印。
我已经可以打印一份访问打印机应用程序的文档副本,如下所示:
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
但这不起作用。
请让我知道我做错了什么。