本文介绍了AppleScript的,修剪QuickTime视频,但不能保持文件名和保存的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我曾尝试为我的生活,我不能找出如何保持文件名和另存为
I have tried for the life of me and I cannot figure out how to maintain the file name and "save as"
我
tell application "Quicktime Player"
activate
trim document 1 from 20 to 50
end tell
任何帮助将大大AP preciated: - )
Any help would be greatly appreciated :-)
推荐答案
未经检验的,但你可以试试这个。
Untested, but you can give this a try.
tell application "QuickTime Player"
activate
tell document 1
trim from 20 to 50
save as file_name
end tell
end tell
或者...
close saving yes
这篇关于AppleScript的,修剪QuickTime视频,但不能保持文件名和保存的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!