我想限制用户在文本字段中输入三个以上的字符,我试过" restrict" TextField是否合适,但我没有找到任何可以允许用户输入的字符数,但我发现了允许的字符类型的限制。那我怎么能实现我想要的呢?这就是我尝试过的:
var theTextField:TextField = new TextField();
theTextField.type = TextFieldType.INPUT;
theTextField.border = true;
theTextField.x = 10;
theTextField.y = 10;
theTextField.multiline = true;
theTextField.wordWrap = true;
addChild(theTextField);
theTextField.restrict="0-9"