home *** CD-ROM | disk | FTP | other *** search
- _xscale = 1;
- _yscale = _xscale;
- _X = _X + (random(26) - 12.5);
- _Y = _Y + (random(26) - 12.5);
- speed = random(30) + 10;
- onEnterFrame = function()
- {
- _xscale = _xscale + speed;
- _yscale = _xscale;
- if(speed > 0)
- {
- speed -= 1;
- }
- time++;
- if(time > 25)
- {
- _alpha = _alpha - 10;
- if(_alpha < 0)
- {
- this.removeMovieClip();
- }
- }
- };
-