home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / peaceplane.swf / scripts / DefineSprite_175 / frame_1 / DoAction.as
Encoding:
Text File  |  2006-09-05  |  150 b   |  9 lines

  1. onEnterFrame = function()
  2. {
  3.    _X = _X - (_root.player.hSpeed + 9);
  4.    if(_X < - (_width - 2))
  5.    {
  6.       _X = _X + (_width - 2) * 5;
  7.    }
  8. };
  9.