# Why Doesn't This Work... Targetting An MC Inside MC

**URL:** https://forum.kirupa.com/t/why-doesnt-this-work-targetting-an-mc-inside-mc/223410
**Category:** flash
**Created:** [April 22, 2007, 12:46pm UTC](https://forum.kirupa.com/t/why-doesnt-this-work-targetting-an-mc-inside-mc/223410 "2007-04-22T12:46:30Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![tomyknoker](https://avatars.discourse-cdn.com/v4/letter/t/50afbb/32.png) [@tomyknoker](https://forum.kirupa.com/u/tomyknoker)
#### Post date: [April 22, 2007, 12:46pm UTC](https://forum.kirupa.com/t/why-doesnt-this-work-targetting-an-mc-inside-mc/223410/1 "2007-04-22T12:46:30Z")

</div>

Inside my mc btn1 I have another mc called ‘arrows’ but when I target it nothing happens, it’s meant to fade \_alpha to 0… Any ideas?

```auto
for (i=0; i<numOfBtn+1; i++) {
	this["btn"+i].num = i;
this["btn"+i].onRollOver = function() {
		this.play();
		this.arrows.alphaTo("0", .5, "easeOutQuad", 0);
	};

```
