00:00
00:00
Newgrounds Background Image Theme

DylansStuff just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

Music Selection 2006-08-02 01:24:20


I have three songs inside of a movie clip. When a song gets to the end, it goes back to the start of the song. How could I have it to where I press a button to go to the corresponding song? Not like a "go to next song" button, but you get to choose either "Song 1", "Song 2", or "Song 3".

Response to Music Selection 2006-08-02 01:37:01


song1 = new Sound ();
song2 = new Sound ();
song3 = new Sound ();

on (load) {
stopAllSounds ();
}

Then make buttons that make each song play, but make sure you stop sounds before the change, check As:Main and Actionscript.org too.

Response to Music Selection 2006-08-02 17:37:48


how would I do that?