# Is this even possible?

**URL:** https://forum.kirupa.com/t/is-this-even-possible/67891
**Category:** Uncategorized
**Created:** [October 20, 2004, 2:40pm UTC](https://forum.kirupa.com/t/is-this-even-possible/67891 "2004-10-20T14:40:04Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![tsavo](https://avatars.discourse-cdn.com/v4/letter/t/7bcc69/32.png) [@tsavo](https://forum.kirupa.com/u/tsavo)
#### Post date: [October 20, 2004, 2:40pm UTC](https://forum.kirupa.com/t/is-this-even-possible/67891/1 "2004-10-20T14:40:04Z")

</div>

Hello!  
I have a question about swap depth.

I have been looking at the tut. on this site about swap depth and it works fine as long as the MC are on the main timeline. But what I need to do is to swap depth on some MC nested inside another MC, when I click a button.

Ive been trying this, but its not working:

```auto
on (release) {
	_root.MC.x +=2;
	_root.MC.MC2.swapDepths(_root.MC.x);
}

```

this is the original code:

```auto
on (release) {
	_root.x +=2;
	_root.MC.swapDepths(_root.x);
}

```

Is it even possible to do what I wanna do?

Thank so much!
