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

  1. function back()
  2. {
  3.    t = _totalframes / 25;
  4.    onEnterFrame = function()
  5.    {
  6.       t--;
  7.       if(t < 0)
  8.       {
  9.          t = 0;
  10.       }
  11.       gotoAndStop(t * 25 + 1);
  12.    };
  13. }
  14. stop();
  15.