# Quick Script Question Plz (not hard but is for me)

**URL:** https://forum.kirupa.com/t/quick-script-question-plz-not-hard-but-is-for-me/125505
**Category:** Uncategorized
**Created:** [October 14, 2004, 8:56am UTC](https://forum.kirupa.com/t/quick-script-question-plz-not-hard-but-is-for-me/125505 "2004-10-14T08:56:33Z")
**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: [October 14, 2004, 8:56am UTC](https://forum.kirupa.com/t/quick-script-question-plz-not-hard-but-is-for-me/125505/1 "2004-10-14T08:56:33Z")

</div>

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.

```auto

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.🙂
