I have tilelist, which is dynamically loaded XML file with pictures, How do I do that would be when you click on a picture in the Label gave her name?

 <mx:TileList id="tileList"
             alternatingItemColors="[#FFFFFF,#EEEEEE]"
             dataProvider="{xmlListColl}"
             itemRenderer="TileListItemRenderer"
             columnCount="3"
             columnWidth="100"
             rowCount="2"
             rowHeight="100"
             direction="horizontal"
             verticalScrollPolicy="on"/>
link|improve this question

75% accept rate
Can you please try to reword it in better english? – J_A_X Apr 11 '11 at 18:34
feedback

1 Answer

up vote 0 down vote accepted

in your TileList call a function with

itemClick="somthingSelected();"

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

"id" is the attribute in your xml dataprovider or whatever you want it to be

link|improve this answer
public function SomthingSelected ():void { txt.text = this.tileList.selectedItem.title; } – Sersh Apr 12 '11 at 14:09
'<mx:TileList id="tileList" dataProvider="{contactsService.lastResult.title}" columnCount="4" columnWidth="125" rowCount="2" rowHeight="100" verticalScrollPolicy="on" itemClick="SomthingSelected ()"/>' – Sersh Apr 12 '11 at 14:11
It does not work (((((((((((((((((((((( – Sersh Apr 12 '11 at 14:12
Did you get it working? If not post a sample of your xml. – The_asMan Apr 13 '11 at 19:15
Also post your TileListItemRenderer – The_asMan Apr 13 '11 at 19:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.