home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / AitchuTheAbduction.swf / scripts / frame_7 / DoAction.as
Encoding:
Text File  |  2005-11-10  |  263 b   |  15 lines

  1. Vague = function()
  2. {
  3.    this.vitesse = 0;
  4. };
  5. Vague.prototype = new MovieClip();
  6. Object.registerClass("VagueClip",Vague);
  7. Vague.prototype.onEnterFrame = function()
  8. {
  9.    this._x -= this.vitesse;
  10.    if(this._x < -300)
  11.    {
  12.       this._x = 850;
  13.    }
  14. };
  15.