"Next" in Repeat?
"Next" in Repeat?
- Subject: "Next" in Repeat?
- From: Steve Ivy <email@hidden>
- Date: Tue, 23 Jan 2001 10:26:21 -0500
I'm still kinda new to AppleScript - is there a way to break out of the
current loop in a repeat statement and skip to the next one?
Something like:
repeat with i in {1,2,3}
if i is "2"
next repeat
else
log (i)
end if
end repeat
???
Thanks,
--Steve