Re: Way to get functionality of C's 'continue' or HC 'next repeat' without using if construct?
Re: Way to get functionality of C's 'continue' or HC 'next repeat' without using if construct?
- Subject: Re: Way to get functionality of C's 'continue' or HC 'next repeat' without using if construct?
- From: Michelle Steiner <email@hidden>
- Date: Mon, 25 Jul 2005 23:25:46 -0700
On Jul 25, 2005, at 11:12 PM, Jim Witte wrote: repeat with i from 1 to numDocs set docName to (name of document i) if (docName does not contain "blah") then continue repeat end if set tURL to (URL of document i) [..] end repeat
How about this; it's a slight modification of the code you are using.
repeat with i from 1 to numDocs set docName to (name of document i) if (docName does not contain "blah") then else set tURL to (URL of document i) --[...] end if end repeat
-- Michelle
-- Whoever said the last man standing is the winner didn't invite the girl.
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden