Re: [Flashcoders] trying to get data from list component

2011-05-26 Thread Karl DeSaulniers
.selectedIndex ?? On May 26, 2011, at 2:36 PM, DONALD TALCOTT wrote: .selectedIndices Karl DeSaulniers Design Drumm http://designdrumm.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] trying to get data from list component

2011-05-26 Thread Creighton, Gerry
Check out this page to get a handle... http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/URLVariables.html -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of DONALD TALCOTT Sent:

Re: [Flashcoders] trying to get data from list component

2011-05-26 Thread DONALD TALCOTT
function submitHandler(e:MouseEvent) { var myArr:Array = topskillsfield.selectedIndices; var selectedTopSkills:String = ; for(var i:int = 0; i myArr.length; i++) { var j:int = myArr[i]; if(selectedTopSkills ==

Re: [Flashcoders] trying to get data from list component

2011-05-26 Thread Karl DeSaulniers
Try this... On May 26, 2011, at 3:27 PM, DONALD TALCOTT wrote: function submitHandler(e:MouseEvent) { var myArr:Array = topskillsfield.selectedIndices; var selectedTopSkills:String = ; for(var i:int = 0; i myArr.length; i++) {