[Flashcoders] Calendar - Datechooser component - how to

2007-02-05 Thread BOYD SPEER
Having some difficulty getting the Datechooser component to work after placing in existing Flash recently converted to Flash 8 from FlashMX When I try to put an 'on(change)' script on the component I get the message that it is not a valid mouse event??? Hope this is not too basic.. Thanks,

Re: [Flashcoders] Calendar - Datechooser component - how to

2007-02-05 Thread Jonathan Berry
You need to use an event listener for components: var listenerObj = {}; listenerObj.change = function(eObj){ //actions } datechooser_dc.addEventListener('change',listenerObj); On 2/5/07, BOYD SPEER [EMAIL PROTECTED] wrote: Having some difficulty getting the Datechooser component to work