Re: [flexcoders] Capturing an event in a separate component

2007-03-27 Thread Marlon Moyer
Thanks Alex. I was able to do this only by using the code-behind technique from labs.adobe.com, but at least it works! On 26 Mar 2007 11:22:17 -0700, Alex Harui [EMAIL PROTECTED] wrote: Make sure you set the bubbles=true when you construct the Event object. The parent should be able to

RE: [flexcoders] Capturing an event in a separate component

2007-03-26 Thread Alex Harui
Make sure you set the bubbles=true when you construct the Event object. The parent should be able to listen to itself and still see it. parent.as class ParentComponent { public function ParentComponent() { addEventListener(bubbler, bubblerEventHandler); } } child3.as