home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Diversos / ntech.swf / scripts / DefineSprite_257 / frame_2 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  153 b   |  9 lines

  1. this.onEnterFrame = function()
  2. {
  3.    Movement._x -= _root.BackSpeed;
  4.    if(Movement._x < 0)
  5.    {
  6.       Movement._x = Movement._width / 2;
  7.    }
  8. };
  9.