I want on first load of SWF to be the music is Off, when the play button press, thats the time the music will play.
On my timeline I have two Layers, for action and the 2nd layer is for the buttons ON / OFF.
Here is my Script:
on my first frame under script layer I put this: stop();
on the second frame I put this: stopAllSounds();
on my play button I put this:
on(release){ prevframe();
}
on my pause button I put this:
on(release){
nextframe();
}
Any help will be appreciated!