I have a nav menu that works fine, but I’m trying to get the buttons to stay in the “over” position when the user clicks it and goes to that page. So if they’re on the “about” page, the “about” button will stay larger than the rest of the menu.
The problem I’m having though, is that the creator of this menu didn’t use individual buttons in this menu but rather put all of the buttons in a tween and the script in frame 1 reads as this:
btn1.btnName = “name1”
btn2.btnName = “name2”
btn3.btnName = “name3”
btn4.btnName = “name4”
btn5.btnName = “name5”
btn6.btnName = “name6”
btn7.btnName = “name7”
btn8.btnName = “name8”
btn9.btnName = “name9”
and only 1 mc and one tween.
So HOW…do I get these buttons to act independently from one another without having to re-create the whole menu? This is done in AS2.
I really just want to get the button to stay large when the user lands on the page they clicked on.
Thanks a bunch!