Applescript键击“⌘+”给出错误

时间:2015-10-21 03:54:32

标签: applescript keystroke

我的苹果不行。我想在我的mac上进行⌘+击键。 这是我目前的代码。

set abc to "+"
tell application "System Events"
keystroke command & abc
keystroke a
end tell

当我点击播放时,我收到错误

  

“系统事件出错:无法将{command,\”n \“}变为类型文本。”从{command,“n”}到文本的-1700。

任何人都知道如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

按下修饰键的语法是

set abc to "+"
tell application "System Events"
  keystroke abc using command down
end tell