home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / casual_gameplay_escape.swf / scripts / DefineSprite_808_soundtoggle / frame_1 / DoAction.as
Text File  |  2008-09-05  |  229b  |  15 lines

  1. stop();
  2. this.onRelease = function()
  3. {
  4.    if(this._currentframe == 1)
  5.    {
  6.       _root.soundmute = true;
  7.       this.gotoAndStop(2);
  8.    }
  9.    else
  10.    {
  11.       _root.soundmute = false;
  12.       this.gotoAndStop(1);
  13.    }
  14. };
  15.