This is a very straight forward, yet maybe impossible to solve question. Does anyone know how to change the myComboBox.selectedItem or at least make it act as if it were changed (meaning on the screen it remains the same, but i can refer to the myComboBox.selectedItem property later on with actionscript and use it.
The selectedItem property is inherited from the List class.
Basically what I’m trying to do is build a media player, and I have my playlist in a combo box. The user clicks on a song to start it. Then when that song finishes, the onSoundComplete method is called from the Sound class, and it will move to the next item on the combo box and start playing that song.
Btw, as in the title, I’m using UI components 2, actionscript 2. It would be a life saver if anyone has a way to do this or solve my problem.