# sound\_player\_mute\_bt\_shuts\_up\_others\_sounds, why ?

**URL:** https://forum.kirupa.com/t/sound-player-mute-bt-shuts-up-others-sounds-why/170138
**Category:** Uncategorized
**Created:** [November 23, 2005, 2:53am UTC](https://forum.kirupa.com/t/sound-player-mute-bt-shuts-up-others-sounds-why/170138 "2005-11-23T02:53:36Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![multimediamkt](https://avatars.discourse-cdn.com/v4/letter/m/e9c0ed/32.png) [@multimediamkt](https://forum.kirupa.com/u/multimediamkt)
#### Post date: [November 23, 2005, 2:53am UTC](https://forum.kirupa.com/t/sound-player-mute-bt-shuts-up-others-sounds-why/170138/1 "2005-11-23T02:53:36Z")

</div>

In a sound player I have this code assigned to Mute button :  
…  
on (press) {  
mmkt = new Sound();  
mmkt.setVolume(0);

}  
on (releaseOutside) {  
mmkt = new Sound();  
mmkt.setVolume(100);  
}  
…  
To load the songs :  
on (press) {  
stopAllSounds();  
Vol = 50;  
mmkt = new Sound();  
mmkt.setVolume(Vol);  
loadMovieNum(“flash/soundmc/song2.swf”, 134);  
unloadMovie(133);  
}  
…  
and to stop playing the songs :  
on (press) {  
stopAllSounds();  
unloadMovie(133);  
unloadMovie(134);

}  
…

There is another mc (navbarbuttonsounds) on the main time line , that is not controlled by the buttons of sound player ; but if Mute bt is clicked all the sounds of navbarbuttonsounds are shut up together with one of the playing songs ;

is there a way to modify Mute bt code not to shut up the other mc ?  
Thank You
