home *** CD-ROM | disk | FTP | other *** search
- xmin = 140;
- xmax = 550;
- onenterframe = function()
- {
- nx = r._xmouse;
- if(nx < xmin)
- {
- nx = xmin;
- }
- if(nx > xmax)
- {
- nx = xmax;
- }
- oldx = c._x;
- oldy = c._y;
- c._x = nx + (c._x - nx) / 1.2;
- r.cbx = c._x - 50;
- r.diff = 0.1 * (280 - c._x);
- if(r.hit)
- {
- gotoAndPlay(5);
- }
- };
- onmousedown = function()
- {
- r.autofire = 1;
- };
- onmouseup = function()
- {
- r.autofire = 0;
- };
- stop();
-