4

在 Google Chrome 浏览器(在 Mac 上)中,您可以通过在 htttp://google.com 中按 Command+Shift+Period 来激活 Google 语音搜索。

假设 url http://google.com加载在 chrome 选项卡中,搜索框处于焦点位置,下面的 applescript 不应该工作吗?

tell application "Google Chrome"
    activate
    tell application "System Events" to keystroke "." using {command down, shift down}
end tell

由于某种原因它不起作用,我不明白为什么,因为以下脚本将按预期用文本填充搜索字段:

tell application "Google Chrome"
    activate
    tell application "System Events" to keystroke "this test works as expected"
end tell

如何使用脚本触发谷歌语音搜索?

4

1 回答 1

3

尝试:

tell application "Google Chrome" to activate
tell application "System Events"
    key code 47 using {command down, shift down}
end tell
delay 3
于 2012-12-10T22:03:33.150 回答