Applescript,修剪了quicktime视频但无法保存文件名并保存

时间:2014-06-17 04:44:51

标签: applescript quicktime

我已经尝试过我的生活,我无法弄清楚如何维护文件名并“另存为”

我有

tell application "Quicktime Player"
    activate
    trim document 1 from 20 to 50
end tell

非常感谢任何帮助: - )

1 个答案:

答案 0 :(得分:0)

未经测试,但您可以尝试一下。

tell application "QuickTime Player"
activate
tell document 1
    trim from 20 to 50
    save as file_name
end tell
end tell

或者...

close saving yes