home *** CD-ROM | disk | FTP | other *** search
- sound_mc.onRelease = function()
- {
- if(com.leadpipe.attentionhog.Game.instance.isSoundOn)
- {
- this.gotoAndStop("off");
- com.leadpipe.attentionhog.Game.instance.soundOn(false);
- }
- else
- {
- this.gotoAndStop("on");
- com.leadpipe.attentionhog.Game.instance.soundOn(true);
- }
- };
- music_mc.onRelease = function()
- {
- if(com.leadpipe.attentionhog.Game.instance.isMusicOn)
- {
- this.gotoAndStop("off");
- com.leadpipe.attentionhog.Game.instance.musicOn(false);
- }
- else
- {
- this.gotoAndStop("on");
- com.leadpipe.attentionhog.Game.instance.musicOn(true);
- }
- };
-