CHANGE Event in TLF?
Is there an event that gets fired when the user types in to an editable TLF field?
For example, using an regular old TextField you could use ...
var tf:TextField = new TextField();
tf.border = true;
tf.width = 100;
tf.height = 20;
tf.type = TextFieldType.INPUT;
tf.border = true;
tf.multiline = false;
addChild(tf);
tf.addEventListener(Event.CHANGE, onTf_CHANGE);
function onTf_CHANGE(event:Event) :void {
trace("onTf_CHANGE()");
}
How would I do this with TextFlow instance?
I've had a play with UpdateCompleteEvent.UPDATE_COMPLETE but that doesn't seem to be what I am looking for.
Thanks in advance.
Adrian
