How do I control the length of what people are typing into my input box?
Printable View
How do I control the length of what people are typing into my input box?
yoou mean the number of characters? you have a little box for maximum chars in the properties.
gparis
yeah i just saw that 2 seconds after i posted this. go me!
;)
gparis
use maxChars -
hth :)PHP Code:this.createTextField("age_txt", 10, 10, 10, 30, 22);
age_txt.type = "input";
age_txt.border = true;
age_txt.maxChars = 2;
age_txt.restrict = "0-9";
// or a TextInput component - instance name - my_ti)
var my_ti:mx.controls.TextInput;
my_ti.maxChars = 2;