在Applescript中使用按键打开一个moviefile

时间:2013-10-16 09:48:00

标签: applescript quicktime movie

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

我希望你们能帮忙!

1 个答案:

答案 0 :(得分:1)

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