Re: Match 'if' Condition and Do Nothing
Re: Match 'if' Condition and Do Nothing
- Subject: Re: Match 'if' Condition and Do Nothing
- From: Michelle Steiner <email@hidden>
- Date: Sat, 20 Dec 2003 12:36:18 -0700
On Dec 20, 2003, at 11:41 AM, Marconi wrote:
if theCondition is MostLikely then -- do nothing but exit the 'if'
else if theCondition is LessLikely then
Do some stuff
else if theCondition is LeastLikely then
do some different stuff
end if
That will work, but if those are the only three likely conditions, why
not just ignore the most likely condition?
if theCondition is LessLikely then
--Do some stuff
else if theCondition is LeastLikely then
--do some different stuff
end if
-- Michelle
--
"The past is like a foreign country. They do things differently
there." --Leslie Poles Hartley
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.