Re: (no subject)
Re: (no subject)
- Subject: Re: (no subject)
- From: email@hidden
- Date: Wed, 22 Nov 2000 19:47:32 EST
i tried this with another script:
repeat with i from 1 to 10
try
display dialog i
on error
exit repeat
end try
end repeat
exits on error -128 (cancel clicked)
with this though:
repeat with i from 1 to 10
try
display dialog i
end try
end repeat
it continues as it should.
G3 350 B&W OS 9.0.4
BTW: you don't need set i to 1 there, it is automatic.