<?xml version="1.0" ?>
<!-- Simple example to demonstrate the RichTextEditor control. -->
<!--
如何使用Flex RichTextEditor
MyShareBook.cn 翻译
-->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
horizontalAlign="center" verticalAlign="middle">
<mx:RichTextEditor id="rte" title="RichTextEditor" height="75%" text="Enter text into the RichTextEditor control, then click a button to display your text as plain text, or as HTML-formatted text."/>
<mx:TextArea id="rteText" width="80%" height="25%"/>
<mx:HBox>
<mx:Button label="Show Plain Text" click="rteText.text=rte.text;"/>
<mx:Button label="Show HTML Markup" click="rteText.text=rte.htmlText;"/>
</mx:HBox>
</mx:Application>
如何使用Flex RichTextEditor
最新推荐文章于 2021-06-19 20:41:48 发布
本文介绍了一个使用Adobe Flex的RichTextEditor组件的简单示例。通过此示例,用户可以了解如何在Flex应用程序中集成富文本编辑功能,并演示了如何将编辑的内容转换为纯文本或HTML标记。
298

被折叠的 条评论
为什么被折叠?



