TLFTextField, selectable property not working?
I understand that "TLFTextField" class is currently under construction but anywhere I googled, I found some talks about the language direction thing which is not yet implemented... but I wonder if other properties are also not working? like .selectable?
this is my code and the TLFTextField won't be selected and I can't make it into type INPUT!
var textFormat:TextFormat = new TextFormat();
textFormat.font = "Arial"
textFormat.size = 15;
textFormat.color = 0x000000;
//_textFormat.direction = "ltr";
var theText:TLFTextField = new TLFTextField();
theText.autoSize = TextFieldAutoSize.LEFT;
theText.antiAliasType = AntiAliasType.ADVANCED;
theText.embedFonts = true;
theText.selectable = true;
theText.type = TextFieldType.INPUT;
theText.defaultTextFormat = textFormat;
theText.tabIndex = this._index;
theText.text = "some text";
this.addChild(theText);
