useHandCursor?

Do any one know how to work with useHandCursor? I want to make hand Cursor to disapear.

“myMovieClip.showHandCursor = false” does it :slight_smile:

myButtonName.useHandCursor = false;

just set it to true or false for whether or not you want the hand cursor to appear for your button (or even movieclip for that matter)

or even:
[AS]
MovieClip.prototype.useHandCursor = false;
//Unless a movieclip defines its own value for useHandCursor
//then it won’t use a hand cursor.
Button.prototype.useHandCursor = false;
//same as above for buttons.
[/AS]