fman 发表于 2013-2-7 15:32:46

flex中嵌入html的例子

<?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">   <mx:Script>   <!]>   </mx:Script><mx:Panel title="Label Example" height="600" width="800" paddingTop="10" paddingLeft="10">   <mx:VBox borderStyle="inset">      <mx:Label id="simpleLabel" text="Label text." fontSize="12" width="400" enabled="true"/>      <mx:Label id="htmlTextLabel" htmlText="{htmltext}">      </mx:Label>    </mx:VBox>    <mx:VBox borderStyle="inset" visible="true"><mx:Text width="100%">            <mx:text>                This is a multiline,               non-editable text component.             </mx:text>      </mx:Text>      <mx:Text width="100%">            <mx:htmlText>                <!]>            </mx:htmlText>      </mx:Text></mx:VBox>      <mx:VBox borderStyle="inset" visible="true"><mx:TextInput id="textinput" text="Hello World!"displayAsPassword="true"/>    </mx:VBox>      <mx:VBox borderStyle="inset" visible="true">      <mx:TextArea width="500" height="50">       <mx:htmlText>      <!]>      </mx:htmlText>            </mx:TextArea></mx:VBox>    <mx:VBox borderStyle="inset" visible="true"><mx:RichTextEditor id="rte" title="RichTextEditor" width="500" height="200" text="RichTextEditor display your text as plain text, or as HTML-formatted text."/></mx:VBox>   </mx:Panel></mx:Application>
页: [1]
查看完整版本: flex中嵌入html的例子