home *** CD-ROM | disk | FTP | other *** search
/ Connect / connect_2005-05.iso / swf / m31.swf / scripts / frame_3 / DoAction.as
Encoding:
Text File  |  2005-04-28  |  450 b   |  19 lines

  1. if(this._ymouse > height / 2 - Math.abs(ysens) and this._ymouse < height / 2 + Math.abs(ysens))
  2. {
  3.    if(this._xmouse < Math.abs(xsens) and this._xmouse > - Math.abs(xsens))
  4.    {
  5.       if(Math.abs(speed) > Math.abs(minspeed))
  6.       {
  7.          speed *= Math.abs(breakfactor);
  8.       }
  9.    }
  10.    else
  11.    {
  12.       speed = (- _xmouse) / mousespeed;
  13.    }
  14. }
  15. else if(Math.abs(speed) > Math.abs(minspeed))
  16. {
  17.    speed *= Math.abs(breakfactor);
  18. }
  19.