I made a dynamic text with buttons under is so that when u roll over different buttons the dynamic text will display different headings.
on (rollOver) {
text1.text = “About Us”;
}
on (rollOut) {
text1.text = “”;
}
etc.
I’m trying to do the same with a movie clip that looks like a button (animates when clicked on), but I can’t get the mouse roll over to work to display the text in the text box text1.
any tips?