;

PDA

Click to See Complete Forum and Search --> : Follow curser from a different angle


alwa7da
07-04-2007, 01:47 PM
I made an object follow the curser, but it follows the curser in the bottom right corner.. I want the object to follow the curser from the left top corner, how do I do that?

a_modified_dog
07-04-2007, 08:26 PM
open the movieclip containing the object and place the object at 0,0
add code on the main timeline -
this.onMouseMove = function(){
mc._x = _xmouse;
mc._y = _ymouse;
}