AppleScript:"预期的行尾等,但找到了标识符",Mavericks错误?

时间:2014-04-24 10:59:58

标签: applescript

我有一个简短的脚本,我开始处理我希望Spotify在AppleScript运行时搜索特定歌曲的地方,但是我得到的错误似乎只是小牛队抱怨的事情(经过短暂的回合)谷歌搜索)。

tell application "Spotify" to activate
delay 0.1
tell application "Spotify" to keystroke "l" using command down

它说

  

语法错误:预期的行尾等,但找到了标识符

并指向“使用”。现在,我只编写了很短的一段时间,但据我所知,这是很多人正在使用并且已经发布到SO和其他地方的确切语法。

有什么想法吗?

干杯

1 个答案:

答案 0 :(得分:14)

命令keystroke属于Processes Suite。您可以使用系统事件调用它。

tell application "Spotify" to activate
delay 0.1
tell application "System Events" to tell process "Spotify"
    keystroke "l" using command down
end tell