http://www.youtube.com/watch?v=9rPEQ0fe9Ms
se pone un componente list en el escenario con nombre listbox
y tambien un campo de texto dinamico con instancia songtitle
en el frame viene esta accion....
Código ActionScript:
Ver original
listbox.Item({label: "eduardo"}); listbox.Item({label: "Arroyo"}); listbox.addEventListener(Event.CHANGE, songselected); function songselected (event:Event):void{ songtitle.text=event.target.selectedItem.label; }
como paso este codigo a AS2