2014-05-07 19 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

我猜撤消是「設置顯示對話框始終」? –