Lets post your flash script - any kind of flash script...

I got mine, how to follow object to your mouse with easing...


4 lines only....

this.onEnterFrame = function(){
objectname._x += (_xmouse - objectname._x)/10;
objectname._y += (_ymouse - objectname._y)/10;
}

Note: Dont forget to add a movie object in the scene with a name objectname. By the way the 10 number is the smoothness of easing.. higher number will increase the smoothness..