我目前正在开展一个学校项目,在该项目中,我需要在 applescript 中使用按键打开视频文件。当我在程序运行时按“y”时,我希望程序在 quicktime 播放器中全屏打开文件。
这是我当前的代码,它可以工作,但我不知道如何包含按键。
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
我希望你们能帮忙!