2014-05-07 21 views
3

任何人都知道是否有命令隐藏applescript中的提示。我知道在Illustrator您使用以下方法:Applescript在photoshop中隐藏提示

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

回答

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 
+0

我猜撤消是“设置显示对话框始终”? –