您好我正在尝试构建一个非常简单的 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