3

有没有办法在苹果脚本中击键 Fn 键?理想情况下,我希望能够“按”两次以启动语音输入。

提前致谢!

4

2 回答 2

2
delay 0.5 -- time to release modifier keys if the script is run with a keyboard shortcut
tell application "System Events"
    key code 63 -- fn
    key code 63
end tell

有关关键代码,请参见 Events.h 或我的网站

于 2013-07-21T11:31:57.563 回答
0

在applescript中,您的文件路径必须是macpath而不是unixpath,即用冒号(而不是正斜杠)分隔目录,例如,

tell application "Finder"
    open folder "Macintosh HD:Users:username:Library:Speech:Speakable Items"
end tell
于 2014-04-11T20:25:32.867 回答