myFormat.font = myFont.fontName;
//myFormat.align = TextFormatAlign.CENTER;
//creating text filed
theTextField= new TextField();
//theTextField.text= "";
theTextField.defaultTextFormat = myFormat;
theTextField.type = TextFieldType.INPUT;
theTextField.border = true;
theTextField.width = 270;
theTextField.height = 80;
theTextField.x = 620;
theTextField.y = 310;
theTextField.multiline = true;
//theTextField.wordWrap = true;
theTextField.background = true;
addChild(theTextField);
theTextField.addEventListener(TextEvent.TEXT_INPUT , inputEventCapture);