import starling.events.*;
import feathers.controls.TextInput;
mytext= new TextInput();
mytext.restrict = "0-9";
mytext.maxChars = 11;
// mytext.textEditorProperties.autoCapitalize = AutoCapitalize.NONE;
// mytext.textEditorProperties.autoCorrect = false;
// mytext.textEditorProperties.color = 0xFFFFFF;
// mytext.textEditorProperties.displayAsPassword = false;
// mytext.textEditorProperties.fontFamily = "Helvetica";
mytext.textEditorProperties.fontSize =18;
mytext.text = "";
mytext.width = 150;
mytext.height = 30;
//mytext.selectRange( 0, mytext.text.length );
mytext.setFocus();
mytext.addEventListener( Event.CHANGE, input_changeHandler );
mytext.x = 30;
mytext.y = 84;
this.addChild( mytext);