home *** CD-ROM | disk | FTP | other *** search
/ Net Power 2002 #12 / Net_2002_12.iso / net12.exe / scripts / frame_361 / DoAction.as
Encoding:
Text File  |  2002-11-02  |  259 b   |  9 lines

  1. fscommand("allowscale",false);
  2. fscommand("showmenu",false);
  3. MovieClip.prototype.moveElastic = function(target, a, b)
  4. {
  5.    this.tempx = this._x;
  6.    this._x = a * (this._x - target) + b * (this.prev_x - target) + target;
  7.    this.prev_x = this.tempx;
  8. };
  9.