如何使用命令关闭按下删除键的AppleScript

时间:2017-06-11 04:33:38

标签: applescript

我有这个脚本,我一直在努力清除我的缓存和应用程序支持文件,我将跳到我需要帮助的部分;

tell application "System Events"
    keystroke "o" using {command down}
        delay 0.5
    keystroke delete using {command down}
end tell

当脚本使用{command down}进入击键删除时,我收到错误消息;

  

错误"系统事件出错:无法继续使用。"数字-1708

我该如何改进?

1 个答案:

答案 0 :(得分:5)

您不使用keystroke,而是使用相关的key code访问特殊密钥。

tell application "System Events"
    key code 51 using {command down}
end tell

请参阅full reference of key codes here