Re: By nice to the Windows user come to AppleScript please :-)
Re: By nice to the Windows user come to AppleScript please :-)
- Subject: Re: By nice to the Windows user come to AppleScript please :-)
- From: Jon Pugh <email@hidden>
- Date: Thu, 10 Jan 2002 11:16:12 -0800
At 1:29 PM -0500 1/10/02, Andy Satori wrote:
>
Is there an equivalent construct to the VBS
>
'for each item in items ... Next'
>
Syntax in AppleScript?
Yes, it's "every".
repeat with i in every item of foo
end
Note that "every item" and "items" are the same. You can use other terms like this too. "every folder" and "folders" and plenty of others too.
Jon