The results in examples 1 and 2 were incorrect.

put myArray [1] & return into toadMeatList
put myArray [2] & return after toadMeatList
put myArray [5]  after toadMeatList

RESULTS-->
Jefferson
Washington
Elvis

or in a "regular" loop

put "1,2,5" into orderList
repeat with n = 1 to numLines
  put myArray[n] & return after toadMeatList
end repeat

RESULTS-->
Jefferson
Washington
Elvis


It's not a list! It's an array.

It's not THE NUMBER OF LINES in myArray.
it's the number of lines in the KEYS of myArray. Big difference.
I'll build a silly array here:

_______________________________________________
--


stephen barncard
s a n  f r a n c i s c o
- - -  - - - - - - - - -


_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to