Hi All, I have a TileList employing a custom ItemRenderer (VBox with Image and labels). I would like to catch Focus In/Out on the ItemRenderer so that when selected I can change the border style on the VBox to provide a custom select indicator instead of the default provide by the TileList (changing the background of the entire cell). I have not yet been able to catch the Focus Event on this ItemRenderer my code is as follows:
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" mouseFocusEnabled="true" focusEnabled="true" mouseEnabled="true" mouseFocusChange="onMouseFocusChange(event)" > The onMouseFocusChangeEvent is never fired. I also tried adding an eventListener on creationComplete method with not success. How can I do this? Any help much appreciated. Thanks, Greg

