I have the following script on some buttons and obviously i dont want the other mc’s playing when you go onto another button.
This is the script for one of the buttons basicly when roll over plays a mc and rolls out plays rest of mc.
on (rollOver) {
tellTarget ("fade_wash") {
gotoAndPlay ("wash_st");
}
}
on (rollOut) {
tellTarget ("fade_wash") {
gotoAndPlay ("wash_finish");
}
}
on (rollOver) {
tellTarget ("wash_sub_bt") {
gotoAndPlay ("wash_bt_start");
fade_home._visible=false;
}
}
The fade_home._visible=false is another mc with basicly the same code on it.
The problem being that it is not working, the roll overs work but it is still showing the other mc’s???
Any ideas
Many thanks for any help.