home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / sketch2.swf / scripts / frame_2 / DoAction.as
Text File  |  2008-09-04  |  135b  |  12 lines

  1. stop();
  2. t = 0;
  3. onEnterFrame = function()
  4. {
  5.    t++;
  6.    if(t > 70)
  7.    {
  8.       nextFrame();
  9.       onEnterFrame = null;
  10.    }
  11. };
  12.