UpdateDisplayList() will get called when the selection changes. You can change your style there. If needed, you can inspect the IR's owner (TileList) using something like:
var isSelected:Boolean = TileList( owner ).isItemSelected( data ); -TH --- In [email protected], Greg Hess <flexeff...@...> wrote: > > Hi All, > > I have a custom item renderer in one of my TileList's. I need to set a > style of one of the children to indicate selection, I am doing this by > overriding commitProperties. However, when debugging the IR's > commitProperties does not get called after the selection changes. > > Is this normal? > > How can I handle the selection change? > > Any help much appreciated, > > Greg >

