[flexcoders] addEventListner help

2009-10-30 Thread Darrin Kay
can some explain how these work? I have a function that calls an event, and on completion of the event I want another function to kick off. How do I do this? thanks, D

Re: [Spam] [flexcoders] addEventListner help

2009-10-30 Thread Nick Middleweek
Hi, As far as i'm aware the event is fired, which in turn calls a function that is set using button.addEventListener(MOUSE.CLICK, myClickHandler) So when the CLICK event fires on the button object it invokes myClickHandler pasing it an event object. if you want to call another function at the