Button problem
How can I get that static button's label but not the button to go away. I thought this would be easy but I am overlooking something. Can any of you experts help me out here?
can you redescribe the effect you're trying to produce in greater detail? I'm sure we can devise something.
Place that inactive button inside a movieclip, and give that clip a name. Goto the ActionScript of the other two buttons and insert script similar to this.
on (rollOver) {
inactivebutton._visible = true;
}
on (release) {
==the active buttons commands go here==
}
on (rollOut, dragOut) {
inactivebutton._visible = false;
}
inactivebutton would be the name of the movie with the button in it. It can be any name you choose. What happens is when a mouse goes over the two active buttons they tell the movieclip with the inactive button to hide.
How do I get that inactive button to disappear when the other 2 active buttons are moused over? As it is now the others fade in over the inactive buttons name. Hope this is clearer. I can't seem to find a button tutorial that addresses this. If there is one let me know where. Thanks.
#If you have any other info about this subject , Please add it free.# |