虚位以待(AD)
虚位以待(AD)
首页 > 网页特效 > Flash > Flex 创建复数行文本内容的List

Flex 创建复数行文本内容的List
类别:Flash   作者:码皇   来源:互联网   点击:

效果不错的flex多行文本

<iframe src="http://blog.minidx.com/ext05/creating-multi-line-list-rows-with-variable-row-heights/main.html" width=550 height=380></iframe>


复制代码 代码如下:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white"
creationComplete="init();" viewSourceURL="srcview/index.html">

<mx:Script>
<![CDATA[
import mx.rpc.events.FaultEvent;
import mx.rpc.events.ResultEvent;

private function init():void {
commentsXML.send();
}

private function commentsXML_result(evt:ResultEvent):void {
var resultXML:XML = evt.currentTarget.lastResult;
list.dataProvider = resultXML.channel.item;
}

private function commentsXML_fault(evt:FaultEvent):void {
mx.controls.Alert.show("Unable to load XML:n" + commentsXML.url, "ERROR");
}
]]>
</mx:Script>

<mx:HTTPService id="commentsXML"
url="http://blog.minidx.com/comments/feed/"
resultFormat="e4x"
showBusyCursor="true"
result="commentsXML_result(event);"
fault="commentsXML_fault(event);" />

<mx:List id="list"
variableRowHeight="true"
wordWrap="true"
labelField="title"
width="250" />

</mx:Application>

相关热词搜索: Flex 数行文本 List