Problem with useHandCursor

hi all,

does anyone know whats wrong with this piece of code. i have a text field within a movieclip and i would like the hand cursor to show when the mouse passes over it. but the hand won’t show, i’m not sure if the text field is influencing the outcome.

thanks for any help :toad:

var mc:MovieClip = new MovieClip();
mc.useHandCursor = true;
addChild(mc);

var printfield:TextField = new TextField();
printfield.border= true;
printfield.selectable = false;
mc.addChild(printfield);