如何识别tilelist中的选定对象?

时间:2011-04-11 18:29:55

标签: flex actionscript-3 tilelist

我有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"/>

1 个答案:

答案 0 :(得分:0)

你的TileList中的

调用一个函数
itemClick="somthingSelected();"

public function somthingSelected():void{
  trace( this.tileList.selectedItem.@id )
}

“id”是您的xml dataprovider中的属性或您想要的任何属性