Hi Barry, A couple of things that you might consider. If you're only using 1 column, just use a List, with an itemRenderer; instead of a TileList. There's no need to add the over-head, if you only want a vertical list of items. If you want new items to show up at the top of the list, add them to the beginning or the dataProvider:
private var myArrayCollection:ArrayCollection; myArrayCollection.addItemAt( myNewItem, 0 ); <mx:TileList id="myTileList" dataProvider="myArrayCollection"/> Another alternative is to programatically scroll to the position of the newly added item. -TH --- In [email protected], Barry Gee <mailingl...@...> wrote: > > Hi. > > I have a TileList component in my app, when i had new items to the tile > list they get added to the bottom of the display, so when new items are > added the user is required to scroll down the list to see the latest > images. Can anyone tell me how to make the tile list add new items to > the top so the most recent image is at the top. The tilelist i am using > is 1 column wide. > > thanks > > barry. >

