我有一个 Applescript 脚本,它使用 Geektool 设置为每 10 秒重复一次。
我在每个处理程序的末尾都有返回,让我知道发生了什么,但这让我几乎没有机会看到脚本中间到底发生了什么。
所以我要问的是Applescript中是否有类似return的命令但不会停止脚本?
干杯。
我有一个 Applescript 脚本,它使用 Geektool 设置为每 10 秒重复一次。
我在每个处理程序的末尾都有返回,让我知道发生了什么,但这让我几乎没有机会看到脚本中间到底发生了什么。
所以我要问的是Applescript中是否有类似return的命令但不会停止脚本?
干杯。
display dialog "This is what's going on" giving up after 1
或者
tell application "Terminal"
activate
set xxx to "This is what's going on"
do script "echo " & quoted form of xxx in window 1
delay 2
do script "echo " & quoted form of xxx in window 1
end tell
返回函数应该可以工作。
set stringYouWantToReturn to "banana"
return stringYouWantToReturn