Offset my working mouse follower

as you can see this is my first post, thank you in advance for your time and assistance.

I have succesfully achieved a mouse follower using the following code,

onClipEvent(load){
physics = 0.15;
}

onClipEvent(enterFrame){
_x += (_root._xmouse-_x)*physics;
_y += (_root._ymouse-_y)*physics;
}

the part I need to understand how to change is:

I want to offset the MC in relation to the mouse pointer,
probably by assigning variables, not sure though.

thanks again for your help.

Lineus-
What do you mean offset the MC in realtion to the mouse? As in make it go slower? Ormaybe move like elasticity? Maybe if you could expplain a little bit more of what you wnat, I’ll try to help you out as best I can.

-brad-:evil:

onClipEvent(enterFrame){
_x += (_root._xmouse+xoffset-_x)*physics;
_y += (_root._ymouse+yoffset-_y)*physics;
}

Problem solved.

I did have to define the variables in the onClipEvent(load)

but once that was done, I was able to adjust the MC.

to reply to bcogswell11:
what I wanted to have happen was have the movie clip that was following my mouse not stop directly under the tip of the mouse
but off to one side and under

thanks to you Both for breaking me in gently