我是Mac的新手,对Applescript一无所知。我尝试了一些先前讨论过的参考文献Applescript Excel 2016 save as PDF,但与某些关键字/语法无关,例如documentPath,PDFPath,documentPath的POSIX路径等。 我的文件路径是“ Macintosh HD:Users:sa:documents:folder_1”,而我的excel文件名是dataworld.xls。我想将工作簿的第一张纸转换为pdf,并且pdf应该在与filepath相同的位置生成。 有人可以帮我吗?
答案 0 :(得分:0)
简单的解决方案,选择工作表并运行脚本:
set destinationFolder to (path to documents folder as text) & "folder_1:"
tell application "Microsoft Excel"
save as active sheet filename (destinationFolder & "dataworld.pdf") file format PDF file format
end tell