2013-01-09 70 views
1

im第一次在automator中使用apple腳本。我希望腳本在先前啓動的應用程序中執行鍵盤快捷鍵。在automator中使用apple腳本執行鍵盤快捷鍵

on run 
activate application "MacCaption" 
tell application "MacCaption" 
    keystroke "x" using command down 

end tell 

即時得到線的語法錯誤預期目的,而是發現使用字標識符。

回答

1

嘗試:

tell application "System Events" to keystroke "x" using command down 
3

您的問題是keystroke具有系統事件經過。或者:

tell app "System Events" 
    keystroke "x" using command down 
end tell 

tell app "System Events" 
    tell process "MacCaption" 
     keystroke "x" using command down 
    end tell 
end tell 

有沒有真正的區別,但你需要的系統事件。