I want a message box to appear at the end of my script to tell me that it is complete. And, I want it to play a sound in a loop until I hit okay.
This is what I have, but this is not working... any tips?
Local $i = 0
Do
MsgBox(0, "!", "Experiment done")
SoundPlay("C:\Programming Automation\beep.wav", 0)
$i = $i +1
Until $i = 2
This is what I have, but this is not working... any tips?
Local $i = 0
Do
MsgBox(0, "!", "Experiment done")
SoundPlay("C:\Programming Automation\beep.wav", 0)
$i = $i +1
Until $i = 2