Repurposing dragslidefade with Fuse

Hello AS helpers,
Trying to repurpose/switch out a DSF class and alternatively use Fuse elements within an array for positioning various mc’s on the stage.
Below is the former and trying to apply Fuse elements, “easeInOutBack,” as opposed to “scrollme.”
I have several mc’s on the stage and want to call them via the array and btn functions.
Thank you to all for comments/suggestions.

currently using :

import com.dragslidefade.*;
stop();
MovieClip.prototype.scrollme = function(xPos, yPos) {
cX = this._x;
difX = cX-xPos;
this._x = cX-(difX/5);
cY = this._y;
difY = cY-yPos;
this._y = cY-(difY/5);
};
stop();

arrayIndex = 0;

linksXpositions = new Array(140,140,140,140,140);
linksYpositions = new Array(213,213,440,440,213);

links.onEnterFrame = function() {
this.scrollme(linksXpositions[arrayIndex], linksYpositions[arrayIndex]);
};

links.btn2.onRelease=function(){
arrayIndex=1;
}

And I want to use an array like above, but using Fuse.

some reference Fuse code below
//

import com.mosesSupposes.fuse.*;
ZigoEngine.register(Fuse,PennerEasing);

var f = Fuse.open();
links.tween("_y", “200”, 6);
links.tween("_y", “600”, 4 , “easeInOutBack”);
Fuse.closeAndStart();