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

  1. this._x = Math.random() * 20 - 10;
  2. this.onEnterFrame = function()
  3. {
  4.    this._y -= 4;
  5.    this._alpha = this._y - -100;
  6.    if(this._y > 100)
  7.    {
  8.       this.unloadMovie();
  9.    }
  10. };
  11.