TextFlow.textLength vs TextFlow.getText().length
I have an empty textFlow.
trace(textflow.textLength); // 1
trace(textflow.getText().length); // 0
Exported in TextConverter.TEXT_LAYOUT_FORMAT:
<TextFlow color="#000000" fontFamily="_sans" fontSize="12" paddingLeft="4" paddingRight="4" paddingTop="3" whiteSpaceCollapse="preserve" xmlns="http://ns.adobe.com/textLayout/2008"><p><span></span></p></TextFlow>
Why would textLength be 1 and not 0?
