Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

changing mouse cursor

Status
Not open for further replies.

bubu

Programmer
Mar 3, 2002
463
RO
Hello all of you guys!

I want to do something like this:

Here i guess they have a movie with that cursor and they hide the original cursor...and the new cursor position is changed after the mouse position?...is that right...how can i do this?...i've found some tutorials on the web but they are not the same...i like this...is nice and smooth

Please advise.



Regards,
Dragos.
 
Hiding the mouse is done like this:

Mouse.hide();

...attaching a new one is done like this (where 'newCursor' is a movieclip):

this.onMouseMove=function(){
newCursor._x=_xmouse;
newCursor._y=_ymouse;
updateAfterEvent()
}
 
thanks a lot wangbar!

U sent me a time ago via e-mail an idea for an website....with some hills, some stars as menu, and a hand in the down left siode of the screen....can you please sent that file again please? :-(

Regards,
Dragos.


 
Sorry mate, deleted that a while back to make some space on the harddrive...
 
:-(
i still have the actions on the thread...i will work it somehow. Thanks a lot!



Regards,
Dragos.


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top