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
AS 2.0 Forum Guidelines || Use AS tags for code samples || Flash LiveDocs || AS 2.0 Language reference (CS4)
yeah i just saw that 2 seconds after i posted this. go me!
gparis
use maxChars - 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; hth
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;
Forum Rules