home *** CD-ROM | disk | FTP | other *** search
/ Champak 48 / cdrom_image.iso / Games / catitens.swf / scripts / DefineSprite_755 / frame_2 / DoAction.as
Encoding:
Text File  |  2007-09-27  |  414 b   |  23 lines

  1. this.onEnterFrame = function()
  2. {
  3.    if(_root.menu_mc.time_bar.bar._xscale > 0)
  4.    {
  5.       _root.menu_mc.time_bar.bar._xscale--;
  6.       _root.score += 10;
  7.       _root.FNscore("s",_root.score);
  8.    }
  9.    else
  10.    {
  11.       delete this.onEnterFrame;
  12.       if(_root.level == 3)
  13.       {
  14.          _root.gotoAndPlay("ending");
  15.       }
  16.       else
  17.       {
  18.          this.play();
  19.       }
  20.    }
  21. };
  22. this.stop();
  23.