Question
How do I change lineBreak To LineBreak.EXPLICIT in a RichEditableTex?
I am trying to change the lineBreak explicitly but the RichEditableText not allowed because hostFormat of TextFlow refers to a CSSTextLayoutFormat which is read only
Exemple
var myTextFlow:TextfLow = TextFilter.importToFlow(new XML(mySource), TextFilter.TEXT_LAYOUT_FORMAT);
<s:RichTextEditor content="{myTextFlow}" width="200" id="rt"/>
....
myTextFlow.lineBreak = LineBreak.EXPLICIT;
textFlow.flowComposer.updateAllControllers();
I tried this too, but failed
And also realized
myTextFlow.hostFormat.lineBreak = LineBreak.EXPLICIT; // i think becouse read only
and debuging above line this return that myTextFlow.hostFormat is a CSSTextLayoutFormat (is read only).
so how do I proceed? Thanks, sorry my english, 
