在阅读了很多关于此的不同线程并尝试了一堆脚本但似乎没有一个工作后,我挠了挠头。
我想使用 Automator 将选择的 docx 文件自动转换为 pdf 的 Word 2016。
使用了以下 Automator 服务:
使用了以下脚本:
on run {input, parameters}
tell application id "com.microsoft.Word"
activate
open input
set doc to name of active window
set theOutputPath to (input & ".pdf")
save as active document file name theOutputPath file format format PDF
end tell
end run
导致错误:Microsoft Word 出现错误:活动文档不理解“另存为”消息。