home *** CD-ROM | disk | FTP | other *** search
- stop();
- this.onRollOver = function()
- {
- this.gotoAndStop(2);
- };
- this.onRollOut = this.onReleaseOutside = function()
- {
- this.gotoAndStop(1);
- };
- if(muteSound)
- {
- mcSon.gotoAndStop(2);
- }
- else
- {
- mcSon.gotoAndStop(1);
- }
- this.onRelease = function()
- {
- var _loc1_ = _global;
- if(muteSound)
- {
- mcSon.gotoAndStop(1);
- _loc1_.sonActif = true;
- muteSound = false;
- }
- else
- {
- mcSon.gotoAndStop(2);
- _loc1_.sonActif = false;
- muteSound = true;
- }
- trace(_loc1_.sonActif);
- };
-