Enable / Disable Cursor Hand in Actionscript 2


If you have a movieclip that by default has the hand cursor showing on RollOver and you don’t really want this, you can disable it by doing the following:

myMC.onRollOver = function() {
    this.useHandCursor=false;
}

So the main code here is: this.useHandCursor=false;

False disables it and true shows it.