Hi All, Is there a way that parent will push an event to its child.
for example
<VBox>
<Component1>
.....
.....
this.dispatchEvent( XEvent );
</Component1>
<Component2>
this.addEventListener( XEvent, onXEvent );
....
function onXEvent( XEvent ) : void {
I need XEvent here
....
....
}
</Component2>
</VBox>
any ideas ?

