标签: applescript
我需要在Automator的循环中自动增量变量。 我不知道这样做...我是AppleScript的新手,一直在寻找并使用谷歌搜索,但没有找到太多信息。
有什么想法吗?
答案 0 :(得分:0)
您可以使用以下内容:
set myVar to 10 repeat with i from 1 to 5 set newVar to myVar + i display dialog (newVar) end repeat
这有帮助吗?