2013-10-16 49 views
1

我目前正在開發一個學校項目,在該項目中我需要在applescript中使用按鍵打開視頻文件。我希望程序在quicktime播放器中全屏打開文件,當程序運行時按「y」。在AppleScript中使用按鍵打開一個moviefile

這是我目前的代碼,它的工作原理,但我不明白我可以如何包含按鍵。

tell application "QuickTime Player" 
    set testmovie to "Users:Nan:movies:atime.mp4" 
    activate 
    open alias testmovie 
    play document 1 
    set presenting of document 1 to true 
end tell 

我希望你們能幫忙!

回答

1

您可以在Automator中創建Service並將您的代碼粘貼到運行applescript操作中。然後您可以在鍵盤首選項中爲該服務分配按鍵。

相關問題