# Event stack problem

**URL:** https://forum.kirupa.com/t/event-stack-problem/163721
**Category:** flash
**Created:** [September 25, 2005, 3:50pm UTC](https://forum.kirupa.com/t/event-stack-problem/163721 "2005-09-25T15:50:09Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![icestream](https://avatars.discourse-cdn.com/v4/letter/i/e19adc/32.png) [@icestream](https://forum.kirupa.com/u/icestream)
#### Post date: [September 25, 2005, 3:50pm UTC](https://forum.kirupa.com/t/event-stack-problem/163721/1 "2005-09-25T15:50:09Z")

</div>

Hi,

I’ve created a movieclip and placed it onto the stage. In this movieclip I’ve created another movieclip.

On the root I placed this peace of code:

```auto

stop();
_root.test.onRelease = function() { trace("outer"); }
_root.test.testje2.onRelease = function() { trace("inner"); }

```

The problem is that when you click on the ‘root’ mc outer is traced but when you click on testje2 placed in test, nothing happens.

Is there a solution for this problem?
