Re: Batch File Conversion - Help!
Re: Batch File Conversion - Help!
- Subject: Re: Batch File Conversion - Help!
- From: Michelle Steiner <email@hidden>
- Date: Wed, 8 Nov 2000 19:32:49 -0800
On 11/8/00 6:16 PM, Bob Varipapa <email@hidden> wrote:
>
With help from John (email@hidden) I have come up with the
>
following, which doesn't work (I get a context error on 'from' in the
>
"repeat with i in xa from 1 to count xa by 1" line).
You tried to combine two different kinds of from loops in one line
use either of the following methods.
repeat with i from 1 to count xa by 1
set xb to item i of xa
--etc
end repeat
or use
repeat with i in xa
set xb to xa
--etc
end repeat
--Michelle
----------------------------------------------------------------------
| Michelle Steiner | Hard as it may be to believe, my |
| email@hidden | life has been based on a true story. |
----------------------------------------------------------------------