Problem textfield inside a movieclip

well i have a textfield inside as a movieclip that will work as a button. i wrote the code like this, just to test
stop();
this.buttonMode=true;

addEventListener(MouseEvent.MOUSE_OVER,over);
addEventListener(MouseEvent.MOUSE_OUT,out);
//addEventListener(MouseEvent.CLICK,down);

function over(event:MouseEvent):void
{
gotoAndStop(“over”);
}

function out(event:MouseEvent):void
{
gotoAndStop(“up”);
}

the problem is that the ""hand cursor doesn’t appear, there is only the text cursor. i ven set the buttonmode in true and nothing i even tried placing a transparent rectangle behind (and over) the textfield to extend the hitarea but NOTHING.
what’s wrong in here?? what can i do to get the hand cursor like the buttons???
please help, i’m really confused :cry3:a