Flex中如何利用htmlText和condenseWhite属性在RichTextEditor中紧缩HTML的空格的例子

在前面的 Flex的TextArea控件中如何利用htmlText属性以及condenseWhite属性紧缩HTML空格的例子中,我们了解了如何通过设置htmlText和condenseWhite属性,在TextArea中将HTML的空格进行紧缩。接下来的例子则演示了在RichTextEditor中,如何利用 htmlText和condenseWhite属性,紧缩HTML标签的空格。
让我们先来看一下Demo(可以右键View Source或 点击这里察看源代码
下面是完整代码(或 点击这里察看):
Download: main.mxml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
  3.         layout="vertical"
  4.         verticalAlign="middle"
  5.         backgroundColor="white">
  6.     <mx:Script>
  7.         <![CDATA[
  8.             private function checkBox_change(evt:Event):void {
  9.                 richTextEditor.textArea.condenseWhite = checkBox.selected;
  10.             }
  11.         ]]>
  12.     </mx:Script>
  13.     <mx:String id="str" source="lorem.html" />
  14.     <mx:ApplicationControlBar dock="true">
  15.         <mx:Form styleName="plain">
  16.             <mx:FormItem label="condenseWhite:">
  17.                 <mx:CheckBox id="checkBox"
  18.                         change="checkBox_change(event);" />
  19.             </mx:FormItem>
  20.         </mx:Form>
  21.     </mx:ApplicationControlBar>
  22.     <mx:RichTextEditor id="richTextEditor"
  23.             htmlText="{str}"
  24.             width="100%"
  25.             height="100%" />
  26. </mx:Application>
分享至
一键收藏,随时查看,分享好友!
0人
了这篇文章
类别: Flex+Asp.net┆阅读( 0)┆评论( 0) ┆ 返回博主首页┆ 返回博客首页
上一篇 Flex的TextArea控件中如何利用setSelection事.. 下一篇 Flex的DateChooser控件中如何通过设置maxYear..

你可能感兴趣的:(职场,休闲)