I'm creating a swf, that has a parent class and a child class. The parent class has a button, that dispatches a custom event and I want the child class to list for this event, but when I dispatch the event the child class does not hear the event has been dispatched.

This is the code that dispatches the event:

private function onCTAClicked(e:MouseEvent):void { trace("onCTAClicked"); dispatchEvent(new CTAClickEvent(CTAClickEvent.CTA_CLICK_EVENT,true)); }

And the listener is registered like this:

public function registerEventListeners():void { this.addEventListener(CTAClickEvent.CTA_CLICK_EVENT, onCTAClickHandler,false);
}

The registerEventListeners() function is in the child class.

I know events can bubble up the display list but how can then go down the list?

Stephen

link|improve this question

61% accept rate
feedback

1 Answer

up vote 0 down vote accepted

No, events do not dig down. They only bubble up. In order for a child of a display object to hear an event dispatched by a parent, in the class of the child object you'll need to add a listener to a reference of the parent object.

public function registerEventListeners() : void {
    parent.addEventListener(CTAClickEvent.CTA_CLICK_EVENT, onCTAClickHandler);
}

Just be sure not to invoke registerEventListeners when parent might be null.

link|improve this answer
Hi,Thanks for the reply. I did manage to solve the problem by using an example I found on this site. Where you create a event Singleton that both the parent and child use to dispatch and listen for the event. Seems to be working fine now. – stevo Jun 29 '11 at 7:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.