forked from: Flash Tip Collection - Tip 2 - Flash style easing method

...
@author YopSolo

An easy way to get an easing effect without any lib
var EASING_FACTOR:Number = .1;
var distanceX:Number = destPoint.x - _myObject.x;
_myObject.x += (distanceX * EASING_FACTOR);

FEAR THE XOR-SWORD ! :p