I would like to type in tabs in a Spark TextArea and the only examples I found are for mx TextArea.
Here is test data I'm using from the suggestion to use manageTabKey
:
var config:Configuration = new Configuration();
var parser:ITextImporter;
config.manageTabKey = true;
parser = TextConverter.getImporter(TextConverter.PLAIN_TEXT_FORMAT, config);
textarea.textFlow = parser.importToFlow("test data");
MXML:
<s:TextArea id="textarea" width="100%" height="100%">
</s:TextArea>