Re: [flexcoders] Calling a ComboBox Change Event from TextInput TextChanged event

2010-05-21 Thread Kerry Jordan
On Wed, May 19, 2010 at 2:41 PM, Angelo Anolin wrote: > I actually need the control's signature which to pass to its own event but > being called from another control's event. I'm still not certain what you are attempting to accomplish, but the dispatchEvent method of the ComboBox will dispatch

Re: [flexcoders] Calling a ComboBox Change Event from TextInput TextChanged event

2010-05-19 Thread Angelo Anolin
flexcoders] Calling a ComboBox Change Event from TextInput TextChanged event On Wed, May 19, 2010 at 10:01 AM, Angelo Anolin wrote: > What I mean is that the change event would be dispatched (or executed) by the > textinput change event. Instead of attempting to conform to an existing func

Re: [flexcoders] Calling a ComboBox Change Event from TextInput TextChanged event

2010-05-19 Thread Kerry Jordan
On Wed, May 19, 2010 at 10:01 AM, Angelo Anolin wrote: > What I mean is that the change event would be dispatched (or executed) by the > textinput change event. Instead of attempting to conform to an existing function's signature, have you considered simply adding another function to process the

Re: [flexcoders] Calling a ComboBox Change Event from TextInput TextChanged event

2010-05-19 Thread Angelo Anolin
: flexcoders@yahoogroups.com Sent: Wed, 19 May, 2010 8:53:43 Subject: Re: [flexcoders] Calling a ComboBox Change Event from TextInput TextChanged event On Wed, May 19, 2010 at 8:38 AM, Angelo Anolin wrote: > I have a ComboBox change event which I want to call from a textchanged event > of

Re: [flexcoders] Calling a ComboBox Change Event from TextInput TextChanged event

2010-05-19 Thread Kerry Jordan
On Wed, May 19, 2010 at 8:38 AM, Angelo Anolin wrote: > I have a ComboBox change event which I want to call from a textchanged event > of a text input. What exactly do you mean by "call"? Do you wish to dispatch a change event or do you want to change the value of a specific ComboBox based on th

[flexcoders] Calling a ComboBox Change Event from TextInput TextChanged event

2010-05-19 Thread Angelo Anolin
Hi FlexCoders, I am a bit stumped on this. I have a ComboBox change event which I want to call from a textchanged event of a text input. The ComboBox has an event parameter which I have no idea how to declare from the textchanged event of the text input. So how do I call the changed event of