時,我有一個簡單的腳本來取物品倒垃圾,並把它們放回原來的目錄:AppleScript的處理對話把文件傳回垃圾桶
repeat 10 times
tell application "Finder" to open trash
tell application "Finder" to activate
tell application "System Events"
tell process "Finder"
delay 0.2
key code 125
key down command
delay 0.2
key code 51
key up command
end tell
end tell
delay 0.2
tell application "Finder" to close every window
end repeat
但運行此腳本拋出了一個異常 - 取景器彈出對話框,說文件已經存在於原始位置,有3個選項:'同時保留','停止'和'替換'。我希望腳本自動選擇'替換'。
任何想法?