Sure. I have way more nesting than that. Although it would look more
like:
<mx:app>
<mx:customComponent />
</mx:app>
<mx:customComponent>
<mx:anotherCustomComponent/>
</mx:customComponent>
For your events, set bubbling to true and the event will bubble up to
the application level.
HTH
Steve
--- In [email protected], "jdizowat" <jasonharr...@...> wrote:
>
> Super Noob Question Incoming -
>
> So if I my application looks like the following -
>
> <mx:app>
> <mx:customComponent>
> <mx:customComponent />
> </mx:customComponent>
> </mx:app>
>
> That deepest custom component dispatches an event and I would like
that event to make it to the application level. Is that even normal to
have components that nested?
>
> Thanks for any insight,
> Jason
>