任何人都知道是否有命令隐藏AppleScript中的提示。我在Illustrator中知道你使用以下内容:
tell application "Adobe Illustrator"
set user interaction level to never interact
set user interaction level to interact with all
end tell
答案 0 :(得分:1)
在Photoshop CS5中,您可以这样做:
tell application "Adobe Photoshop CS5"
set display dialogs to never
end tell
要重新打开对话框,请使用:
tell application "Adobe Photoshop CS5"
set display dialogs to always
end tell