Geektool and returning Applescript



我有一个Applescript脚本,它设置为每10秒使用Geektool重复一次。

我在每个处理程序的末尾都有返回,让我知道发生了什么,但这让我几乎没有机会看到脚本中间到底发生了什么。

所以我要问的是,Applescript 中是否有类似返回的命令,但不会停止脚本?

干杯。

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

相关内容

  • 没有找到相关文章

最新更新