home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Diversos / eggrun.swf / scripts / DefineSprite_394 / frame_2 / DoAction.as
Encoding:
Text File  |  2007-03-28  |  230 b   |  11 lines

  1. this._x -= this.myspeed;
  2. if(this._x < -2)
  3. {
  4.    this.myspeed = this.rand1 / 4;
  5.    this._x = 322;
  6.    this._y = 240 * Math.random();
  7.    this._xscale = 100 * this.rand1;
  8.    this._yscale = 100 * this.rand1;
  9. }
  10. gotoAndPlay(1);
  11.