Right have:
MC > Buttons/MCs > MC/Buttons
In the second Button/mc when i roll over one button the mc plays, which is fine.
However, when i roll over another button the other mc’s stay there which obvious means they overlap and look stupid.
I have the following code.
on (rollOver) {
tellTarget ("news_sub_bt") {
gotoAndPlay("wash_bt_start");
wash_sub_bt._visible = false;
}
}
and on the other button i have
on (rollOver) {
tellTarget ("wash_sub_bt") {
gotoAndPlay("wash_bt_start");
news_sub_bt._visible = false;
}
}
As you can see i am to tell them not so show each other when rolling over, yet bother still appear.
What am i doing wrong?
Anyone help please