RichText 不适用于项目符号

发布于 2024-11-26 06:47:38 字数 1338 浏览 2 评论 0原文

请参阅下面创建的简单应用程序。我有一个 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>

关于如何使项目符号与 RichText 一起使用有什么想法吗?我使用了正确的转换方法吗? TextConverter.importToFlow

请参见下图。

子弹

See the simple application created below. I have a RichTextEditor and a RichText component. The idea is to display whatever typed in the RichTextEditor in the RichText component. Everything else (I think) works except for Bullets! The conversion works as if bullets don't exist!

<?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>

Any idea on how to make Bullets work with RichText ? Am I using the correct conversion method ? TextConverter.importToFlow ?

See the image below.

Bullets

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱人如己 2024-12-03 06:47:38

不支持列表项TEXT_FIELD_HTML_FORMAT。您需要创建自己的编辑器来支持添加的 TextFlow 功能。 Tour de' Flex 中有一个这样的编辑器的示例,但它是在 TLF 2 中列出支持之前编写的。我不确定它是否已更新,但如果没有,您将需要自己添加该功能。

祝你好运!

List items are not a supported by TEXT_FIELD_HTML_FORMAT. You would need to create your own editor that supports the added TextFlow functionality. There is an example of one such editor in Tour de' Flex, but it was written prior to list support in TLF 2. I'm not sure if it's been updated, but if not you will need to add in that functionality yourself.

Good luck!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文