I have a series of button movie clips that get highlighte in color and also with
an arrow when moused over.
I am trying
to get it to stay highlighted with arrow untill one of the other buttons is
clicked. The other buttons mouse over feature needs to work untill click, then
the previous clicked button goes back to it normal non over state.
I have attached the FLA; here is my button
code:
**Frame 1 of Btn MC:
[COLOR=#ff0000]onRollOver = function () {
gotoAndPlay(5);
};
onRollOut = function () {
gotoAndPlay(1);
};
stop();
cityName_txt.textColor =
0xFFFFFF;
[/COLOR]
Frame 5 of
Btn MC:
[COLOR=#ff0000]stop();
cityName_txt.textColor = 0xFFEFBF;[/COLOR]
**