If you have a label and you want to show a hand cursor when the mouse is over it you have to set three properties as bellow:
lbl.useHandCursor = true;
lbl.mouseChildren = false;
lbl.buttonMode = true;
where lbl is
public var lbl:Label = new Label();
Job’s done!