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
我希望你們能幫忙!