home *** CD-ROM | disk | FTP | other *** search
/ Champak 45 / Vol 45.iso / games / escape.swf / scripts / DefineSprite_214 / frame_1 / DoAction.as
Encoding:
Text File  |  2005-08-23  |  202 b   |  12 lines

  1. this.stop();
  2. start_cnt = 25;
  3. this.onEnterFrame = function()
  4. {
  5.    start_cnt -= 1;
  6.    if(start_cnt < 0)
  7.    {
  8.       _root.enemy.robo.gotoAndPlay("wait");
  9.       this.gotoAndPlay("wait");
  10.    }
  11. };
  12.