Rollover?

Help help help

I have this button with the text saying “Hyper”. The button itself is blue with the text in orange. When I roll my mouse over to the button I want the text to turn white or some other color. How do I do that?

right?

try this:

Yea thats what I want

How did you do that?

Please tell me

:bad: mwaamwaaaa!!!

just joking you dude :stuck_out_tongue:

Ok, follow these steps and use the fla as reference:

**#0 - ** create a orange text, and make it a movie clip;
**#1 - ** double click that movie clip to edit it;

**#2 - ** on the frame one break the txt appart (ctrl+b);
**#3 - ** make that frame a shape tween;
**#4 - ** add the action - stop(); - to the frame 1;

**#5 - ** on the frame six insert a new keyframe and change the color of the text to white;
**#6 - ** add the action - stop(); - to the frame 6;

**#7 - ** on the frame twelve insert a new keyframe and change the color of the text back to orange;
**#8 - ** add the action - gotoAndStop(1); - to the frame 12;

**#9 - ** return to the main timeline;

**#10 - ** give that movie clip an instance name, such as txt (open the properties panel and type txt on the instance name box);
**#11 - ** add this code to the movieclip, now instance named txt:

on (rollOver) {
	_root.txt.gotoAndPlay(1);
}
on (rollOut) {
	_root.txt.gotoAndPlay(6);
}

there you go! =)

[EDIT] changed the instance name from hyper to txt

:sleep:

Thanks for the joke…

Thanks for the tutorial anyways heh

=)

sorry dude, i made a mistake on the post with the instructions:

you´ll have to change the instance name from hyper to txt.

in the movie clip and in the code too

And let me know if you got it to work!

Cheers :whistle:

I can’t get it to work still

For some reason when I create the shape tween thing, their isn’t those arrows things but like little dot lines. It ain’t working. When I play the movie clip it just shows me a blank screen.

When you said new keyframe you mean a keyframe or blank keyframe?

When you do a shape tween, it will display the dotted line and your timeline would be green. When you do a regular tween, it will show the arrows and the timeline would be light purple.

Post your fla so we could take a look at it and see what you did wrong.