From: Jason W. <jwe...@ci...> - 2000-11-28 22:33:29
|
The dynapi example for a multiSelect List does this: for (i=0;i<mylist.items.length;i++) { if (mylist.items[i].selected) str += i+'\n' } What I would like to do is something like this: for (i=0;i<mylist.items.length;i++) { if (mylist.items[i].selected) str += mylist.myvalue+'\n' } With 'myvalue' being the text that is displayed in the list, or better yet, an argument defined by mylist.add. Is something like this possible? Thanks, Jason |