这是我目前的代码:
tell application "Finder"
tell application "System Events" to keystroke "k" using {command down}
end tell
但它不会起作用。
任何提示?
答案 0 :(得分:1)
你没有告诉Finder告诉系统事件做什么。
您需要确保要拦截击键的应用程序处于活动状态。然后告诉系统事件进行击键。
tell application "Finder" to activate
tell application "System Events"
keystroke "k" using {command down}
end tell