home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Diversos / ntech.swf / scripts / DefineSprite_121 / frame_1 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  177 b   |  14 lines

  1. Mov = 2;
  2. this.onEnterFrame = function()
  3. {
  4.    Light._x += Mov;
  5.    if(Light._x <= 0)
  6.    {
  7.       Mov = 2;
  8.    }
  9.    else if(Light._x >= 60)
  10.    {
  11.       Mov = -2;
  12.    }
  13. };
  14.