SWiSH Player Support
SWF6 or later - Not Supported (Use File | Test | Browser/Player)
Syntax
buttonName.useHandCursor
Arguments
none
Returns
Nothing.
Description
Property; determines whether the specified button uses a hand cursor or not. The default value of true tells the button to use the hand cursor while a value of false tells it to use the arrow cursor. This property can be changed at any time
Sample
onLoad() {
buttonName.useHandCursor = false;
}
// uses the standard mouse pointer when over the named button
onFrame(10) {
buttonName.useHandCursor = true;
}
// displays the hand cursor when over the named button