Applescript在photoshop中隐藏提示

时间:2014-05-07 13:41:26

标签: applescript photoshop photoshop-script

任何人都知道是否有命令隐藏AppleScript中的提示。我在Illustrator中知道你使用以下内容:

tell application "Adobe Illustrator"
    set user interaction level to never interact
    set user interaction level to interact with all
end tell

1 个答案:

答案 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