Re: Repeat With question (newbie level)
Re: Repeat With question (newbie level)
- Subject: Re: Repeat With question (newbie level)
- From: Michelle Steiner <email@hidden>
- Date: Wed, 14 Feb 2001 09:11:31 -0800
On 2/14/01 8:51 AM, Bill Planey <email@hidden> wrote:
>
Is there a way to set each alphabetic character into a list
>
{"a", "b", "c", "d", etc.} and have the variable be redefined
>
to the next letter in the list upon the completion of a step
>
until the last letter has been used? I know this is possible
>
with numbers (ie,: Repeat with i from 1-9), but how about letters?
set the alphalist to {"a", "b", "c", "d"}
repeat with currentLetter in the alphalist
display dialog currentLetter
end repeat
--Michelle
----------------------------------------------------------------------
| Michelle Steiner | We're not human beings having a spiritual |
| | experience. We're spirtual beings |
| email@hidden | having a human experience. |
----------------------------------------------------------------------