Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

roll over buttons

Status
Not open for further replies.

bigbird3156

Programmer
Feb 20, 2001
183
AU
Hello again,

this is probably one that has been covered time and time again but I can't find anything about it....

I have a roll over button that makes text come up in a text box on the other side of the screen, at the moment I just have the text as part of the 'over' state of the button, as you know this means that if you roll over where the text box is the button will be activated and the text shows up.

Is there any way to fix this up so that the text only appears when the button is rolled over and not when the text box is rolled over.... by the way, I do not want to screw around with the main time line of the movie to get this to work, as that needs to be used for something else...

Please help!

(-: The Bird from Down Under
bigbird_3156@bb3.com.au
 
just put the text in a mc and call the text from the button..

on (rollOver) {
_root.yourmc.gotoAndPlay(2);
}
on (rollOut) {
_root.yourmc.gotoAndPlay(1);
}


that way the text is not in the over state of the button..just put it in a mc..first frame blank..goto frame 2 to show the text..on roll out goto 1 to close the text..


logo.gif


carlsatterwhite@orlandomediasolutions.com
 
stop action in both frames!
logo.gif


carlsatterwhite@orlandomediasolutions.com
 
Thanks for that,

I actually figured out the problem about 5 minutes after calling for help, but hey thats cool, we came up with the same answer anyway :) HURRAY FOR BOTH OF US!!! BOOO FOR ME BEING SOOOO IMPATIENT!! (-: The Bird from Down Under
bigbird_3156@bb3.com.au
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top