Code: Select all
repeat until x = 1
answer "Hi"
end repeat
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
repeat until x = 1
answer "Hi"
end repeat
Code: Select all
repeat until x = 1
answer "Hi"
wait 0 millisec with messages
end repeat
Code: Select all
repeat until x = 1
answer "Hi" with "Cancel" or "OK"
if it is "Cancel" then exit repeat
end repeat
Code: Select all
repeat until x = 1
stuff that hopefully eventually results in x = 1 :)
if the optionkey is down then exit repeat
end repeat