back in AS2, it took 5 lines of code to initiate an object, using ease, to follow your mouse on screen.
var myEase = .1; myCircle.onEnterFrame = function () { this._x += (_xmouse – this._x) * myEase; this._y += (_ymouse – this._y) * myEase; }
ahh..these were the days!
YES!!!! Thanks for bringing me back.