Skip to main content
Participating Frequently
July 23, 2009
Question

Get flash to realise that something has been entered to input text box

  • July 23, 2009
  • 1 reply
  • 357 views

I am making a piece of software that requires me to write a single number or letter in an input text box and then this text affects some other things on the screen. Does anyone know how to make flash realise that I have entered a number into the box?

This topic has been closed for replies.

1 reply

Inspiring
July 23, 2009

Yes. The same way that Ned suggested in your other thread. Check out the TextField class and the onChanged event.

var myTextField:TextField;

myTextField.onChanged=function(){

trace("Something entered.");

}