[flexcoders] Event Handlers inside custom components

2005-07-27 Thread Archibald Scatflinger
I have a custom component and I want to make it so that when one of its properties is changed by an external source then it triggers one of the components methods. I realize that this is probably really simple and I am just missing something but everything I have tried has either produced errors o

Re: [flexcoders] Event Handlers inside custom components

2005-07-27 Thread Scott Barnes
Yes, using object.watch(prop, callback [, user data]) On 7/28/05, Archibald Scatflinger <[EMAIL PROTECTED]> wrote: > I have a custom component and I want to make it so that when one of > its properties is changed by an external source then it triggers one > of the components methods. > > I rea

Re: [flexcoders] Event Handlers inside custom components

2005-07-28 Thread Manish Jethani
On 7/28/05, Archibald Scatflinger <[EMAIL PROTECTED]> wrote: > I do not want to use implicit getter/setters because I want the > components property to be bindable. To make the component's property bindable, specify a "ChangeEvent" for the property and dispatch the event when the value changes.

Re: [flexcoders] Event Handlers inside custom components

2005-07-28 Thread Kelly R
>Reply-To: flexcoders@yahoogroups.com>To: flexcoders@yahoogroups.com>Subject: Re: [flexcoders] Event Handlers inside custom components>Date: Thu, 28 Jul 2005 23:12:51 +0530>>On 7/28/05, Archibald Scatflinger <[EMAIL PROTECTED]> wrote:>> > I do not want to use

Re: [flexcoders] Event Handlers inside custom components

2005-07-28 Thread Kelly R
>Reply-To: flexcoders@yahoogroups.com>To: flexcoders@yahoogroups.com>Subject: Re: [flexcoders] Event Handlers inside custom components>Date: Thu, 28 Jul 2005 23:12:51 +0530>>On 7/28/05, Archibald Scatflinger <[EMAIL PROTECTED]> wrote:>> > I do not want to use