home *** CD-ROM | disk | FTP | other *** search
- _xscale = 30 + random(80);
- _yscale = 20 + random(60);
- ys = 4 + random(5);
- ro = 4 + random(10);
- if(random(100) > 50)
- {
- ro = - ro;
- }
- onenterframe = function()
- {
- _rotation = _rotation + ro;
- _Y = _Y + ys;
- ys += r.grav;
- if(_Y > 420)
- {
- this.removeMovieClip();
- }
- };
- stop();
-