I am writing a script that will spawn a dialog box 1000 times then quit. The problem I'm having is that whenever a dialog box comes up a button shows up on the dialog box and I can't have the user pressing "OK" 1000 times. So is there a way to just have a dialog box appear and then disappear without the user clicking a button?
Code:
set LoopDialog to "Window"
repeat 1000 times
display dialog LoopDialog
end repeat