Hi, I am currently developing a mobile application in Flashbuilder 4.5 Pro. However, I am having problems because I cannot add a drop-down list to my application and work with it properly. I have created the code below, and this effectively creates a drop-down list and fills it with elements, however, when the user clicks on the element, he is not selected in the field.
This also happens when I test it on my machine, and the only way to select an item is to click on the list and then use the down arrow on the keyboard, which I cannot do in the application. Can someone please help me ????
<s:DropDownList id="sex_drpdown" width="150" height="61.35" labelField="value" fontSize="30" change="sex_drpdown_changeHandler(event)">
<s:ArrayCollection>
<fx:String>Male</fx:String>
<fx:String>Female</fx:String>
</s:ArrayCollection>
</s:DropDownList>
source
share