to restrict the number of characters in TextInput using flash actionscript
import fl.controls.TextInput; var tI:TextInput = new TextInput(); tI.maxChars = 10; tI.width = 200; tI.move(10, 10); addChild(tI);
import fl.controls.TextInput; var tI:TextInput = new TextInput(); tI.maxChars = 10; tI.width = 200; tI.move(10, 10); addChild(tI);