home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / grizzly_tank.swf / scripts / DefineSprite_560 / frame_174 / DoAction.as
Encoding:
Text File  |  2007-03-20  |  431 b   |  17 lines

  1. next_btn.onRelease = function()
  2. {
  3.    if(gGameStarted == true)
  4.    {
  5.       _parent._parent.fnUnPauseGame();
  6.    }
  7.    else
  8.    {
  9.       _parent.help_mc.gotoAndStop(2);
  10.       _parent._parent.helpMusic = new Sound(_parent._parent.HelpMusic_mc);
  11.       _parent._parent.helpMusic.attachSound("HelpMusic");
  12.       _parent._parent.helpMusic.setVolume(50);
  13.       _parent._parent.helpMusic.start(0,999);
  14.    }
  15.    gotoAndStop(1);
  16. };
  17.