home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Acao / Titans / robin.swf / scripts / DefineSprite_353 / frame_17 / DoAction.as
Encoding:
Text File  |  2006-01-05  |  348 b   |  26 lines

  1. r.noshot = 99999;
  2. r.oldy = s._y;
  3. delete onmousedown;
  4. delete onmouseup;
  5. d = 40;
  6. onenterframe = function()
  7. {
  8.    if(r.bgspeed != 0)
  9.    {
  10.       if(s._x > 100)
  11.       {
  12.          s._x--;
  13.       }
  14.    }
  15.    else
  16.    {
  17.       d--;
  18.       if(!d)
  19.       {
  20.          r.gotoAndPlay("win");
  21.          delete onenterframe;
  22.       }
  23.    }
  24. };
  25. stop();
  26.