我正在处理我的第一个AppleScript(2.5)并且似乎无法解决我的问题。
我尝试打开文件夹中的每个降价文件并导出为PDF。使用指定的应用程序打开文件可以正常工作,但是我得到了变量PDF没有定义'在出口之前。
我尝试了四到五套不同的命令,从保存命令的排列到尝试使用' export'正如一些人所建议的那样,但这种形式似乎是我最接近成功的形式。 (任何时候我使用导出我得到"预期行尾等,但找到标识符"并且单词' export'突出显示)
我感谢任何见解
tell application "Finder"
set sourceFolder to "Path:To:SourceFolder"
set MDFiles to files of folder sourceFolder whose name extension is "md"
end tell
repeat with f in MDFiles
set filePath to f as text
set newFilePath to (text 1 thru -2 of filePath) & "pdf"
tell application "MacDown"
open f
save f in file newFilePath as PDF
close f saving no
end tell
end repeat
答案 0 :(得分:0)
遵循@ vadian的建议后,应用程序似乎无法保存为PDF。