您好,我正在尝试构建一个非常简单的Automator服务,以自动打开Keynote文档中的“自动循环”。我对AppleScript不太熟悉,但是我已经用它几次来做一些次要的事情。在自动服务中使用此脚本时,出现以下错误:
语法错误
“无法将«class aulp»设置为true。”
我敢肯定这很明显,但是我对AppleScript不那么熟悉。任何帮助将不胜感激。
这是脚本
on run {input}
set thisDocument to input
tell application "Keynote"
tell thisDocument
set auto loop to true
save thisDocument
end tell
end tell
end run