1

我目前正在开展一个学校项目,在该项目中,我需要在 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

我希望你们能帮忙!

4

1 回答 1

1

您可以在 Automator 中创建服务并将代码粘贴到运行 applescript 操作中。然后,您可以在键盘首选项中为服务分配击键。

于 2013-10-16T11:12:27.413 回答