home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / ellipsis.swf / scripts / DefineSprite_87_gameOver / frame_1 / DoAction.as
Encoding:
Text File  |  2007-02-20  |  128 b   |  11 lines

  1. var count = 0;
  2. onEnterFrame = function()
  3. {
  4.    count++;
  5.    if(count >= 100)
  6.    {
  7.       gotoAndPlay(2);
  8.    }
  9. };
  10. stop();
  11.