使用 AppleScript 编辑 .doc 文档

发布于 2024-09-09 06:01:31 字数 284 浏览 6 评论 0原文

我正在尝试将一些 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

智商已欠费 2024-09-16 06:01:31

稍加谷歌搜索就会发现这个。 ..

这基本上是您要编写的整个脚本。

A little google searching would have turned up this...

which is basically the whole script you're trying to write.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文