Menu Help

Been a lil bit since I posted here, just got back into my flash work, time to get back to the best group for it. Anyway, I need some help with a menu scheme. It is a 5 button menu, all 5 buttons are sperate but are the same animation. When you hover the button the button and text reverse, and when u go of it reverses again. Now I wanna have it, if I slick on the button the reverse will stay until I click on another button. The following link:

www.evilattitude.com/vexed/index.html

is the menu. The music section, as you notice on hover the white text goes blue and the bg goes white. Now if I click this I wanna make it stay like that, until anotehr button is click. I think I explained myself the best I could…so anyhelp would be apreciated. Thxs in advance.

This is the easiest way that I have found to do it -
Load and unLoad movies into blank ovie clips for each button.

TD

That would work, but I have 5 buttons with seperate text, I would need 5 seperated movies. I kno there is a actionscript for this I have seen it b4 :\ I just cant remember it?

guess no1 has any ideads :\

Check my attachment… is that what you meant?

**** ur good…thanks

Only problem is the buttons that the player uses already have an instance name. Check the attachment for the player I made.

No problem, the AS is pretty straight forward… just a few things to keep in mind…

Unless you edit the script to be something different your buttons must have the instance names button1, button2, button3, button4, and button5 (if you make more than 5 button you will have to edit the i<=5 in the for loop script so that the 5 is the number of buttons you have).

Your buttons must actually be movie clips, and those movie clips contain 2 frames, Frame 1 being the not pressed state, and frame 2 being the pressed state. You would of course need a stop action at least on Frame 1 so that the clip doesn’t play to start with, but instead stops at Frame 1. I use a gotoAndStop in the script so Frame 2 doesn’t need a stop action, I have no clue why I added it.

Thats about it, everything is else pretty straight forward.

I see you edited your post: I checked out that .zip file, you need to recreate the buttons to movie clip symbols. You can’t target frames in button symbols, so there isn’t really a way to do what you want to do on a button symbol (that I know of).

So you need to recreate the buttons.

k I will recreate the buttons, then I can use the instance names that I have set for the buttons already correct? So I can edit ur AS, and change it from

button1.onPress = pressed;
to
one.onPress = pressed;

No… as stated previously…

*Originally posted by lostinbeta *
Unless you edit the script to be something different your buttons must have the instance names button1, button2, button3, button4, and button5 (if you make more than 5 button you will have to edit the i<=5 in the for loop script so that the 5 is the number of buttons you have).

Due to using a for loop, unless you store your instance names in an array it would be easier to just give them the instance names button1, button2, etc etc. It’s just an instance name so it’s not really a big deal to change it :sigh:

Oh and while we are at it… since your buttons also have other actions to run you can do this…

[AS]button1.onPress = function(){
this.pressed();
//any other actions here
}[/AS]

Alrighty now lets move on a lil further, I found another bump in the road. Your example provided only had 1 movie clip with no text, where I run into the problem is the reverse on the colors. the buttons I have Up, have blue bg and white text, when over they will have a white bg and the blue bg color becomes the text color. Ok, no problem really there, until u change the text from 1 to 2. Then I would need a new movie clip to change the text.

Create a movie clip symbol for each button. I would say just overlay the text on a new layer above the buttons, but since your text changes colors you should probably create a new symbol for each button. Unless you want to get all textFormatty and stuff.

Actually… for my own interest I want to try it with the text format.

Here we go, I used the TextFormat object to change the text and dynamic textboxes with a for loop to populate the labels :wink:

nice man, now time to annoy you some more…

ok lets see if I can get a mouseover animation to be the same as the pressed animation.

hint hint button1.onRollOver = function(){ //do this }

got it :wink: but, i just relaized something…for my fifth button its a stop button it shouldnt have a 5 but instead a X…slaps himself Hear we go again.

its called an if statement. If j is equal to 5, have the textbox be an “X” :wink:

now lets see if I can put it all togteher :wink:

Well I got it to work… but this should be easy enough to do on your own, especially since I just told you what to do in English in my last post. All thats left is to convert English to Actionscript :wink: