When you have a dynamic text field inside a Movie clip that you want to use as a button and you setso the hand cursor apears when you hover over it, make sure you set the following atributes to the text field:Code:our_mc.buttonMode = true;
This will disable the mouse for the children of our_mc. You could also useCode:our_mc.mouseChildren = false; our_text.selectable = false;
to disable the mouse just for the text field.Code:our_text.mouseEnabled = false; our_text.selectable = false;


LinkBack URL
About LinkBacks

Reply With Quote

Bookmarks