为Apple脚本设置随机间隔

时间:2018-08-25 15:52:51

标签: random applescript

我刚刚开始学习Apple Script的旅程,我想知道是否要拖延3秒钟才能键入Apple Script。我希望它以1-10秒的随机间隔输入。谢谢您的提前帮助

tell application "System Events"
    set textToType to "text here"
    delay 3

    repeat
        delay 1
        keystroke textToType

        keystroke return
    end repeat
end tell

0 个答案:

没有答案