RE: applescript-users digest, Vol 2 #187 - 15 msgs
RE: applescript-users digest, Vol 2 #187 - 15 msgs
- Subject: RE: applescript-users digest, Vol 2 #187 - 15 msgs
- From: "Bourque, Jason" <email@hidden>
- Date: Thu, 4 Jan 2001 16:15:53 -0500
Sure
set something to false
set x to 1
repeat until something is true
set x to x + 1
if x = 10 then
set something to true
display dialog "I'm True"
end if
end repeat
Jason Bourque
MFS Investment Management
>
----------
>
From: Stephen Gross
>
Sent: Thursday, January 4, 2001 3:41 PM
>
To: email@hidden
>
Subject: Re: applescript-users digest, Vol 2 #187 - 15 msgs
>
>
Is there a way to do a while loop in applescript?
>
>
--Steve