I have a few buttons, they activate or make visable/call on MC's. Question is, when the buttons are rolled over, how can i make the MC nonvisable? Is there more effective code than this, that follows?
on (rollOver, rollOut) {
_root.mch._visible = "1";
_root.mca._visible = "0";
_root.mcb._visible = "0";
_root.mcr._visible = "0";
_root.mcc._visible = "0";
}
on the layer i have them all "0", on the button is the code above, so when everything loads, the MC's are "0".
can i make it with a roll out function or something?
any better way of doing the above? thanks everyone!
on (rollOver, rollOut) {
_root.mch._visible = "1";
_root.mca._visible = "0";
_root.mcb._visible = "0";
_root.mcr._visible = "0";
_root.mcc._visible = "0";
}
on the layer i have them all "0", on the button is the code above, so when everything loads, the MC's are "0".
can i make it with a roll out function or something?
any better way of doing the above? thanks everyone!