change text of a button
I wrote some text in the stage using the text tool, then I selected it and converted it to a symbol of type button, how can I change the text of this type of button? The Button name is btnBack, and if I double click it I can see that the name of the "text" is txtBack. I have tried the following:
btnBack.label = "test";
btnBack.text= "test";
btnBack["txtBack"] = "test";
btnBack.txtBack = "test";
btnBack.txtBack.text = "test";
But I cant change the text... How can I do it?
