Interactive Image Panning

Hello,

I’ve been using the tutorial: [URL=“http://www.kirupa.com/forum/../developer/flash8/interactive_image_pan.htm”]Interactive Image Panning, Page 1
http://www.kirupa.com/developer/flash8/interactive_image_pan.htm

Which work great, the problem I have I want to add a second movieclip, like a sign post, that pans with the mouse too but at a slower rate.

can any one help modify the code below:

this.onMouseMove = function() {
constrainedMove(bg_mc, 4, 1);
};

function constrainedMove(target:MovieClip, speed:Number, dir:Number) {
var mousePercent:Number = _xmouse/Stage.width;
var mSpeed:Number;
if (dir == 1) {
mSpeed = mousePercent;
} else {
mSpeed = 1-mousePercent;
}

target.destX = Math.round(-((target._width-Stage.width)mSpeed));
target.onEnterFrame = function() {
if (target._x == target.destX) {
delete target.onEnterFrame;
} else {
target._x += Math.ceil((target.destX-target._x)
(speed/100));
}
};

}

Thanks
Wayne