MovieClip.useHandCursor Property | Flash 6 |
dictates whether a hand pointer is displayed when the mouse is over the clip (button-enabled clips only) | read/write |
When set to false, the Boolean useHandCursor property disables the display of the hand pointer normally shown when the mouse is over mc's hit area. It applies only to movie clips with button event handlers. For details, see Button.useHandCursor.
The following code disables the hand cursor for checkBox_mc:
checkBox_mc.useHandCursor = false;
The following code disables the hand cursor for all movie clips in a movie:
MovieClip.prototype.useHandCursor = false;
Button.useHandCursor, Mouse.hide( )