Cursor problems

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

I forgot to mention that it was in flash MX

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!

That was simple!!! Thanks Lostinbeta,
LOTW

No problem. Always glad to be of service.