我正在尝试编写一个脚本以将 Word 文档保存为单文件网页 (.mht) 格式。我已经完成了编写实际“保存”命令的部分,但我被困在那里。这就是我想要做的:
# the_file is a variable which has been set here
tell application "Microsoft Word"
activate
open the_file
save the_file as [type]
end tell
开放部分工作得很好。但是我不知道要为保存类型输入什么。也许更重要的是,我不知道在哪里可以找到可用类型的列表。任何人都可以帮忙吗?
编辑:评论者建议使用字典;我在那里找到了以下内容,但不知道如何解释它[我是一个 AS 菜鸟]。
[file format format document97/format document97/format template97/format template97/format text/format text line breaks/format dostext/format dostext line breaks/format rtf/format Unicode text/format Unicode text/format HTML/format web archive/format stationery/format xml/format document/format documentME/format template/format templateME/format PDF/format flat document/format flat documentME/format flat template/format flat templateME/format custom dictionary/format exclude dictionary/format documentAuto/format templateAuto] : The format in which the document is saved.