> Mike B. wrote:
> repeat for each line tKey in myArrayA["sortedWords"]
>   -- do whatever with each one myArrayA[tKey].....
> end repeat

Why administrate another object while you have already one?
One could rebuild to string from array and sort in one step:

put fld "myListField" into mySortList
repeat for each line L in mySortList
    -- do whatever with each one myArrayA[L] ...
end repeat


_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to