[flexcoders] Re: extending components

2006-05-14 Thread Doug Arthur
Is there a good resource on understanding dispatching and listening for events? On 5/12/06, jeremy lu [EMAIL PROTECTED] wrote: login panel, and show the main panel. Or, is there better ways of accomplishing what I seek? yes, I would use events to trigger next screen(view), say after

Re: [flexcoders] Re: extending components

2006-05-14 Thread jeremy lu
http://livedocs.macromedia.com/labs/1/flex20beta3/0461.html very detailed information about Event (flow and listeners) On 5/14/06, Doug Arthur [EMAIL PROTECTED] wrote: Is there a good resource on understanding dispatching and listening for events?On 5/12/06, jeremy lu [EMAIL PROTECTED]

Re: [flexcoders] Re: extending components

2006-05-14 Thread Doug Arthur
I'm working with Flex 1.5, do these livedocs still apply? On 5/14/06, jeremy lu [EMAIL PROTECTED] wrote: http://livedocs.macromedia.com/labs/1/flex20beta3/0461.html very detailed information about Event (flow and listeners) On 5/14/06, Doug Arthur [EMAIL PROTECTED] wrote: Is there a

Re: [flexcoders] Re: extending components

2006-05-14 Thread jeremy lu
well, sort of. evens in flex 1.5 won't bubble up, which means you can't listen to it in Application level (as in flex2). but you can still have some kind of singleton Broadcaster class to dispatch events and listen to it (from every view), the idea is all the same. or, take a look at