Is there a way to "listen" to dynamic text? I have this dynamic textfield on the stage and I want to call a function once the the dynamic text has been changed. I tried to add event listener but it seems to work only on INPUT text. Any suggestions? Thanks
feedback
|
|
While @annonymously's answer works, attaching enterFrame listeners to wait for text change (or any change, for that matter) is not a good idea - the text might not change at all, then why would you run a piece of code many times per second, if it's avoidable? Not to mention the fact, that you'd have to do it over and over again for each new text field instance you want to monitor. It is better to react to actual changes, and these are caused by your own setting of properties. You should simply extend the TextField class and override the setters for htmlText and/or text to dispatch a change event:
| ||||
|
feedback
|
|
You can write very simple subclass which allows you to listen text change events. Sublass:
Usage example:
| |||
|
feedback
|
|
Did you try the | |||
feedback
|
|
Only input text dispatches CHANGE events, as you said. You'll have to work around it, perhaps like this:
| |||
|
feedback
|