PDA

View Full Version : Cursor problems



lightoftheworld
August 11th, 2002, 08:57 PM
Hi all,
I wanted to know how I can keep my cursor an arrow when I mouseOver a button or mc, instead of it changing into a hand.

Thanks, LOTW http://www.kirupa.com/forums/smileys_files/azzangel.gif

lightoftheworld
August 11th, 2002, 08:59 PM
I forgot to mention that it was in flash MX

lostinbeta
August 11th, 2002, 09:33 PM
You will be amazed at how simple this is. It is a great feature of Flash MX.

Right click on your button and select actions.... add this....



on(rollOver) {
_root.myButton.useHandCursor = false
}



Where myButton = the instance name of your button.

You can also do it in a frame by right clicking the frame and choosing Actions then adding...

_root.myButton.useHandCursor = false

Either way works.

Hope this helps!

lightoftheworld
August 11th, 2002, 09:38 PM
That was simple!!! Thanks Lostinbeta,
LOTW

lostinbeta
August 11th, 2002, 11:03 PM
No problem. Always glad to be of service.