# Any help out there?

**URL:** https://forum.kirupa.com/t/any-help-out-there/197660
**Category:** flash
**Created:** [August 18, 2006, 1:36am UTC](https://forum.kirupa.com/t/any-help-out-there/197660 "2006-08-18T01:36:00Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![brndn](https://avatars.discourse-cdn.com/v4/letter/b/dec6dc/32.png) [@brndn](https://forum.kirupa.com/u/brndn)
#### Post date: [August 18, 2006, 1:36am UTC](https://forum.kirupa.com/t/any-help-out-there/197660/1 "2006-08-18T01:36:00Z")

</div>

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?

```auto

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](http://img205.imageshack.us/my.php?image=stressometerht7.swf)

The white box is what I am trying to control?
