I’ve been doing quite a bit of searching and I’ve tried quite a few things and I’m still not getting a hand cursor. I’ve tried buttonMode, useHandCursor, and mouseChildren (you can see below) and I’ve tried them individually and in different groupings and all the same result: no hand.
Am I not allowed to have a hand cursor on the hit area? Whats wrong with this picture?
var branch:String = buttons*;
var elem:MovieClip = this[buttons*];
var hit:MovieClip = this[buttons*+"_hit"];
elem.hitArea = hit;
hit.buttonMode = true;
hit.useHandCursor = true;
hit.mouseEnabled = false;
hit.mouseChildren = false;
elem.addEventListener(MouseEvent.MOUSE_OVER, tweenForward);
elem.addEventListener(MouseEvent.MOUSE_OUT, tweenBackwards);
elem.addEventListener(MouseEvent.CLICK, sproutInfo(branch));