home *** CD-ROM | disk | FTP | other *** search
- ys = - random(10);
- xs = random(5);
- ro = 4 + random(10);
- if(random(100) > 50)
- {
- ro = - ro;
- xs = - xs;
- }
- onenterframe = function()
- {
- _rotation = _rotation + ro;
- _Y = _Y + (ys + vy);
- _X = _X + (xs + vx);
- ys += r.grav2;
- if(_Y > 450 or _X < -40 or _X > 640)
- {
- this.removeMovieClip();
- }
- };
- gotoAndStop(tipe);
-