如何让finder在applescript中运行键盘快捷键?

时间:2014-10-01 18:12:04

标签: macos applescript keyboard-shortcuts finder

这是我目前的代码:

tell application "Finder"

    tell application "System Events" to keystroke "k" using {command down}

end tell

但它不会起作用。

任何提示?

1 个答案:

答案 0 :(得分:1)

你没有告诉Finder告诉系统事件做什么。

您需要确保要拦截击键的应用程序处于活动状态。然后告诉系统事件进行击键。

tell application "Finder" to activate
tell application "System Events"

    keystroke "k" using {command down}

end tell