# Quick MC/BT Question

**URL:** https://forum.kirupa.com/t/quick-mc-bt-question/139208
**Category:** Uncategorized
**Created:** [March 1, 2005, 10:31am UTC](https://forum.kirupa.com/t/quick-mc-bt-question/139208 "2005-03-01T10:31:17Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Jezthomp](https://avatars.discourse-cdn.com/v4/letter/j/b2d939/32.png) [@Jezthomp](https://forum.kirupa.com/u/Jezthomp)
#### Post date: [March 1, 2005, 10:31am UTC](https://forum.kirupa.com/t/quick-mc-bt-question/139208/1 "2005-03-01T10:31:17Z")

</div>

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.

```auto

on (rollOver) {
	tellTarget ("news_sub_bt") {
		gotoAndPlay("wash_bt_start");
		wash_sub_bt._visible = false;
	}
}

```

and on the other button i have

```auto

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 🙂
