is there sorting I could do to stop my dynamic text field from disappearing on rotate ?
yourtxt.addEventListener(MouseEvent.CLICK, textFrom);
function textFrom(event:MouseEvent):void
{
var textFormat:TextFormat = new TextFormat("Cubano","35","0xEFB20C","focusRectPadding",0);
var textField:TextField = new TextField();
textField.defaultTextFormat = textFormat;
textField.text = 'Your text here';
textField.x = 258.75;
textField.y = 100;
textField.width = 300;
textField.height = 80;
textField.multiline = true;
textField.wordWrap = true;
textField.type = "input";