使用 AppleScript 编辑 .doc 文档
我正在尝试将一些 .doc 文件批量转换为 .pdf 时如何引用格式来更改文件格式
我很确定我的概念是正确的,我只是不知道当我“另存为”设置 F 选择文件夹 告诉应用程序“Finder” 将 P 设置为(F 的全部内容的文件) 重复 I 从 1 到 P 中的项目数 将 this_item 设置为 P 的项目 I 作为别名 告诉应用程序“Microsoft Word” 激活 打开这个_项目 另存为活动文档文件格式 格式 PDF 关闭窗口1 结束告诉 结束重复 结束告诉
谢谢
I am trying to batch convert some .doc files to .pdf
I am pretty sure I've got the concept right, I just do not know how to reference the format to change the file format when I "Save As"
set F to choose folder
tell application "Finder"
set P to (files of entire contents of F)
repeat with I from 1 to number of items in P
set this_item to item I of P as alias
tell application "Microsoft Word"
activate
open this_item
save as active document file format format PDF
close window 1
end tell
end repeat
end tell
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
稍加谷歌搜索就会发现这个。 ..
这基本上是您要编写的整个脚本。
A little google searching would have turned up this...
which is basically the whole script you're trying to write.