Seems there is a "textChanged" event in the TextInput.as class file
// Trigger bindings to 'text'.
dispatchEvent(new Event("textChanged"));
Maybe you could listen for that instead of/in addition to change/textInput
events?
On 3/12/07, Kevin <[EMAIL PROTECTED]> wrote:
I have a text input field that has a 'text' property bound to a Model
Locator variable. I would like the size of this field to change
based on the width of the bound text, however I can't find a way to
trigger this. When the user changes the text manually it is not a
problem to use the 'change' event or 'textInput' event, but when the
text property is changed through a modification of the bound model
locator value, the field doesn't trigger any event that I can find.
Any thoughts on how to handle this?
- Kevin