我有这个脚本,我一直在努力清除我的缓存和应用程序支持文件,我将跳到我需要帮助的部分;
tell application "System Events"
keystroke "o" using {command down}
delay 0.5
keystroke delete using {command down}
end tell
当脚本使用{command down}进入击键删除时,我收到错误消息;
错误"系统事件出错:无法继续使用。"数字-1708
我该如何改进?
答案 0 :(得分:5)
您不使用keystroke
,而是使用相关的key code
访问特殊密钥。
tell application "System Events"
key code 51 using {command down}
end tell