ActionScript for Flash MX: The Definitive Guide, Second Edition

ActionScript for Flash MX: The Definitive Guide, 2nd EditionBy Colin Moock
Chapter 18.  ActionScript Language Reference
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

mc.useHandCursor

Description

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.

Example

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;

See Also

Button.useHandCursor, Mouse.hide( )

    Категории