AS3 easing

Hi all, i’m still learning AS3 but have a pretty sound knowledge of AS2, i’m wondering if someone can help me with the attached, it’s a simple onEnterFrame with expo ease, i’ve not used a TweenClass for a reason! could someone have a quick look and show me the best way to achieve this in AS3.

var masterEnterFrame = this.createEmptyMovieClip(this, this.getNextHighestDepth());
var drag:Number = 5;

function doMoveOut(newX) {
masterEnterFrame.onEnterFrame = function() {
targetClip._x += (newX-targetClip._x)/drag;
};
}

function doMoveIn(newX) {
masterEnterFrame.onEnterFrame = function() {
targetClip._x += (newX-targetClip._x)/drag;
};
}

outClip.onRelease = function() {
doMoveOut(183);
};

inClip.onRelease = function() {
doMoveIn(550);
};