Right, well here’s another pitiful question for you gods of flash…
so anyways I’m makin’ a navbar for my site. I have a dynamic text field named “display”. I want all the buttons on the bar to light up and change the variable “display” to um… “home” for example. and then on rollout go back to “click a button”
so I made a button and put this code with it:
on (rollOver){
_root.display = Home;
}
on (rollOut){
_root.display = Click a Button;
}
I figure there’s just something wrong with the syntax, cause all I’ve ever had to change before were variable values, not characters/strings.
btw I just moved up to MX, why does it appear that I can give my dynamic text fields two different names?