Added like this in a frame of a mc:
mysound = new sound();
mysound.loadSound("trac.mp3",true);
mysound.start();
How do I turn this off without using stop all sounds, dont want to kill sound in my button rollovers whn the music is turned off, just the music, how do I unload "mysound".
on (press) {
_root.sound.mysound.stop();
}
But that didnt work.
mysound = new sound();
mysound.loadSound("trac.mp3",true);
mysound.start();
How do I turn this off without using stop all sounds, dont want to kill sound in my button rollovers whn the music is turned off, just the music, how do I unload "mysound".
on (press) {
_root.sound.mysound.stop();
}
But that didnt work.