I am a little confused. I made a button symbol and I put a textbox called "butLabel". this button is encapsulated into another movieclip called MainMenu. cbegin is the instance name I gave the button. If I trace like this....
trace(menu.cbegin);
It recognizes cbegin is a button. but if I trace it like this
trace(menu.cbegin.butLabel);
it says butLabel is null. Below is how I call on the Menu movieclip
var menu = new MainMenu();
trace(menu.cbegin.butLabel);
menu.x = sr.stageWidth/2;
menu.y = sr.stageHeight/2;
Again, the button works, but the label inside of the button doesnt. textfield is set to dynamic and I copied and pasted the name that was in the instance name field, into my code. so they have to be the same. I also went about typing the word button into the text field by default from the library, and it seems to work fine but if I alter the textfield via code, it doesn't work. Any suggestions as of what is going on ?? Thanks!