On Oct 29, 2011, at 9:05 PM, Ronald Hofmann wrote:
no, that will not do.
I should be
myname of item n of the theNameList
in a loop. I dont think it will work without that.
But is there any real problem in looping through each one to build your new list of names?
(It would be nice to be able to just ask for each of them) But I don't know of another way to do it.
property theNameList : {}
set theNameList to {¬
{myname:"Titzi", height:170, weight:55}, ¬
{myname:"Stephen", height:184.5, weight:75}, ¬
{myname:"Elke", height:174.5, weight:50}, ¬
{myname:"Silke", height:175, weight:60} ¬
}
set theChooseList to {}
repeat with currentPerson in theNameList
set end of theChooseList to myname of currentPerson
end repeat
choose from list theChooseList