home *** CD-ROM | disk | FTP | other *** search
/ The Great Adventure of Natural Gas / start / start.swf / scripts / DefineSprite_44 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-01-01  |  149 b   |  12 lines

  1. stop();
  2. i = 0;
  3. this.onEnterFrame = function()
  4. {
  5.    i++;
  6.    if(i == 50)
  7.    {
  8.       delete this.onEnterFrame;
  9.       gotoAndPlay(2);
  10.    }
  11. };
  12.