Page 1 of 1

changing cursor

Posted: Thu May 07, 2009 5:43 am
by Glenn Boyce
How do I change the cursor when I'm hovering over a selected object?

Posted: Thu May 07, 2009 8:02 am
by malte
Hi,
this should do the trick:

on mouseEnter
lock cursor
set the cursor to watch
end mouseEnter

on mouseLeave
unlock cursor
end mouseLEave

Cheers,

Malte

Posted: Thu May 07, 2009 10:14 pm
by Glenn Boyce
Thank you. does the trick nicely