Any help out there?

Hi
sorry for this
For some reason this semi works but the object wont follow the cursor inside the object called “Remove_area”
Can I use the _xmouse like this inside a var?


var indetifyer:Object = _xmouse;

function CursorMovement() {
_root.dragger._x = .9*(dragger._x-indetifyer)+indetifyer;
}

Remove_area.onRollOver = function(){
 CursorMovement();
setInterval(CursorMovement, 40);
indetifyer = _xmouse;
}

Remove_area.onRollOut = function(){
indetifyer = 2;
}

http://img205.imageshack.us/my.php?image=stressometerht7.swf

The white box is what I am trying to control?