我需要帮助编写一个在automator中运行的AppleScript。它需要做的就是输出“这是我的文档”到下一个自动机操作。
答案 0 :(得分:0)
有时候最好用一个例子来展示。将两个appleScript任务添加到Automator窗口,并将此代码粘贴到第一个:
on run {input, parameters}
set sentence to "This is my document"
return sentence
end run
......这是第二个:
on run {input, parameters}
repeat with sentence in input -- beacause it could be more than one
display alert sentence
end repeat
end run
当你点击跑步(右上角按顺序运行它们)时,你会看到第一个脚本成功输出了句子,而另一个脚本正在显示一个警告。希望这个回答你的问题。