MediaController + ComboBox

I’m trying to make an MP3 player that gets the song titles from a comboBox (instance name: songList). I playing component is a media component mediaController (instance name: songPlayer). This is what I have in the action script section of the mediaController:

on(load) {
_root.songPlayer.setMedia(_root.songList.value, “MP3”);
_root.songPlayer.autoPlay = true;
_root.songPlayer.play(0, 25);
}

The problem I’m having is even if I select a different song from the comboBox, it’s still playing only the first (default) song (regardless of whether the current song was paused or not).

I’m kinda stumped as to what to use/do now :ko:

Any help would be much appreciated.