PDA

View Full Version : useHandCursor?????



Bolto_Crank
June 28th, 2003, 09:56 PM
Do any one know how to work with useHandCursor? I want to make hand Cursor to disapear.

ahmed
June 28th, 2003, 10:01 PM
"myMovieClip.showHandCursor = false" does it :)

senocular
June 28th, 2003, 10:02 PM
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)

λ
June 29th, 2003, 09:59 AM
or even:

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.