我有tilelist,它是带有图片的动态加载的XML文件, 如何点击Label中的图片给她的名字?
<mx:TileList id="tileList"
alternatingItemColors="[#FFFFFF,#EEEEEE]"
dataProvider="{xmlListColl}"
itemRenderer="TileListItemRenderer"
columnCount="3"
columnWidth="100"
rowCount="2"
rowHeight="100"
direction="horizontal"
verticalScrollPolicy="on"/>
答案 0 :(得分:0)
用
调用一个函数itemClick="somthingSelected();"
public function somthingSelected():void{
trace( this.tileList.selectedItem.@id )
}
“id”是您的xml dataprovider中的属性或您想要的任何属性