This is the script that I am trying to work with
"myList" is the instance name of the box
-that worksmyList.addEventListener(Event.CHANGE, itemChange)
function itemChange(e:Event):void
{
trace(myList.selectedItem.label);
}
what I need to know is what syntax to use for choosing a specific item because I want to trigger an event after a selection






Bookmarks