# Very basic question

**URL:** https://forum.kirupa.com/t/very-basic-question/179002
**Category:** Uncategorized
**Created:** [February 16, 2006, 12:00am UTC](https://forum.kirupa.com/t/very-basic-question/179002 "2006-02-16T00:00:02Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![salimai](https://avatars.discourse-cdn.com/v4/letter/s/5f8ce5/32.png) [@salimai](https://forum.kirupa.com/u/salimai)
#### Post date: [February 16, 2006, 12:00am UTC](https://forum.kirupa.com/t/very-basic-question/179002/1 "2006-02-16T00:00:02Z")

</div>

I’m having a horrible time figuring this out, even though I think it’s probably extremely basic. How do I target a mc for an action from inside another mc? Specifically, I have a mc that when clicked stays lit up, and I want it to reset when I click on any one of a few other mc’s. Here’s what I have at this point, but it’s not working:

```auto
this.onPress = function(){
_root.mc01.gotoAndPlay(1);
_root.mc02.gotoAndPlay(1);
_root.mc03.gotoAndPlay(1);
_root.mc04.gotoAndPlay(1);
}

```

Please help!
