home *** CD-ROM | disk | FTP | other *** search
- var a = Math.random() * 2 * 3.141592653589793;
- this._x = Math.sin(a) * 60 + 10 * Math.random();
- this._y = Math.cos(a) * 60 + 10 * Math.random();
- this.age = 0;
- this.onEnterFrame = function()
- {
- this._x += (Math.random() - 0.5) * 1;
- this._y -= Math.random() * 5;
- if(int(this.age) < 10)
- {
- this.age = int(this.age) + 1;
- }
- var _loc2_ = Math.random() * 9 * this.age + 40;
- _loc2_ *= Math.max(0,this.age - 27);
- this._xscale = this._yscale = _loc2_;
- this.gotoAndStop(int(Math.min(this._totalframes,Math.max(2,int(Math.random() * 5) + this.age * 2.7))));
- this._rotation = Math.random() * 360;
- };
-