home *** CD-ROM | disk | FTP | other *** search
- speed = -8;
- d = 40;
- onenterframe = function()
- {
- d--;
- if(d > 0)
- {
- dx = _X - s._x;
- dy = _Y - s._y;
- ang = math.atan2(dy,dx);
- xs = speed * math.cos(ang);
- ys = speed * math.sin(ang);
- _rotation = deg(ang);
- }
- _X = _X + xs;
- _Y = _Y + ys;
- if(!r.inv)
- {
- if(hittest(s.z))
- {
- r.hit = 1;
- }
- }
- if(_X < -30 or _Y < -30 or _Y > 430)
- {
- this.removeMovieClip();
- }
- };
-