I’ve attached the navigation I am using for my forum but I am completely lost on how to fix it up and stuff. What I want to happen is to have each little circle change colors on RollOver (I made a frame 2 inside each movie clip with how I want it to look) and then on click go to the specific page, obviously by getURL. But I’m just having problems pulling everything together. My biggest problem is that I want to display some text for each one in a box. For instance if you rollOver the left most circle the word “Members” should show up in a box. I know that I could just make a movie clip with a whole bunch of different frames with all the words and link them together, but considering its just text I figured there might be another way to do it.
So basically, I’m really really confused and need help
I didn’t check your .fla, but I don’t really need to since the method would be the same anyway…
Create a textbox, set it to be dynamic, and give it an instance name.
On your button…
[AS]on (rollOver) {
//put “Message” in field
textFieldInstanceName.text = “Message”;
}
on (rollOut){
//clear field
textFieldInstanceName.text = “”;
}[/AS]
Ok, I checked out your .fla and there are a few things…
All your circle buttons are the same and do the same exact thing, so why do you have multiple symbols of the exact same thing when you can easily reuse 1 symbol by dragging it out of the library and onto the stage.
For what you are doing, you would probably be better off with a Button symbol instead of a MovieClip symbol like you currently have. The reason your clips are blinking is because you are using movie clip symbols, and there is no stop() action to keep it from looping. If you use a button symbol you have a set of frames (Up, Over, Down, Hit) where each frame is a state of the button according to the mouse.
yeah… I mean I know all that stuff, but I had already made like 4 mc’s before i even thought about buttons…
and then I tried to just do some sort of onRollOver gotoAndStop frame 2 type stuff but it wasnt workin for me…
So I guess I’m gonna go ahead and make them all buttons, but I still need help gettin the stuff to display