[flexcoders] Re: eventdispatching between 2 classes

2007-02-15 Thread Paul DeCoursey
Your classes would need to extend EventDispatcher. Then they can use the dispatchEvent function to dispatch events. To receive events you either need to put event listeners directly on the class or on the SystemManager. If you put the listener on the SystemManager then you need to make sure the

RE: [flexcoders] Re: eventdispatching between 2 classes

2007-02-15 Thread Gordon Smith
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul DeCoursey Sent: Thursday, February 15, 2007 6:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: eventdispatching between 2 classes Your classes would need to extend EventDispatcher

[flexcoders] Re: eventdispatching between 2 classes

2007-02-15 Thread martywolf11
, February 15, 2007 6:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: eventdispatching between 2 classes Your classes would need to extend EventDispatcher. Then they can use the dispatchEvent function to dispatch events. To receive events you either need to put event listeners