请参阅下面创建的简单应用程序。我有一个RichTextEditor
和一个RichText
组件。我们的想法是在RichText组件中显示RichTextEditor中输入的内容。除了子弹外,其他一切(我认为)都有效!转换就像子弹不存在一样!
<?xml version="1.0" encoding="utf-8"?>
<s:Application width="100%"
height="100%"
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx">
<s:layout>
<s:HorizontalLayout />
</s:layout>
<fx:Script>
<![CDATA[
import flashx.textLayout.conversion.TextConverter;
import mx.events.FlexEvent;
protected function convert_clickHandler(event:MouseEvent):void
{
richText.textFlow = TextConverter.importToFlow(editor.htmlText, TextConverter.TEXT_FIELD_HTML_FORMAT);
}
]]>
</fx:Script>
<mx:RichTextEditor id="editor" />
<s:Button id="convert" click="convert_clickHandler(event)" />
<s:RichText id="richText" />
</s:Application>
有关如何使Bullets与RichText一起使用的任何想法?我使用正确的转换方法吗? TextConverter.importToFlow
?
见下图。
答案 0 :(得分:1)
TEXT_FIELD_HTML_FORMAT不支持列表项。您需要创建自己的编辑器,以支持添加的TextFlow功能。在Tour de' Flex中有一个这样的编辑器的例子,但它是在TLF 2中的列表支持之前编写的。我不确定它是否已经更新,但如果没有,你将需要自己添加该功能。
祝你好运!