我刚刚开始学习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