This problem is generally to do with the fact that item renderers are re-used.
Have you checked out the item renderer stuff on Alex Harui's blog? (http://blogs.adobe.com/aharui/2007/03/thinking_about_item_renderers_1.html) If you post your item renderer code, perhaps we can point you in the right direction. --- In [email protected], "grenma" <gre...@...> wrote: > > I have a TileList with a custom ItemRenderer that misbehaves when it scrolls: > one tile (the last tile rendered when viewed initially) stays fixed in place > as a "ghost" image (it is not clickable like the other tiles) and sits over > the other scrolled items. The spot the ghost tile should be in is vacant > until it scrolls off the screen and then scrolls back into view. If you > scroll up just one row then back down again the TileList works properly > (weird, I know). > The Tilelist is added as the child of a Canvas on a state change and has a > custom Itemrenderer with an image, text fields and a background image. The > code is very simple: > > <mx:TileList direction = "horizontal" width = "166" height = "345" > columnCount = "2" dataProvider = "{favoritesList}" itemRenderer = > "com.clickety.fe.gui.renderers.Thumbnail" backgroundAlpha = "0.0" borderStyle > = "none"/> > > Any help is appreciated and will help save my hair and sanity. >

