Hello all,
So I’ve got a little music player that loads an external SWF in each frame of the main timeline - which loads the music.
loadMovieNum(“tracks/track1.swf”, 2);
I have buttons for stop, play, previous and next. My issue lies in the stop button. I attached an action of:
on (release) {
stopAllSounds();
}
It stops it, but only temporarily. After the song loops in the external swf, it replays (and you hear audio again). I went into the external swf itself and put a stop action in it (which works) but I don’t want that. I want it to go to the next song in the player without stopping.
Any help would be appreciated, thanks.