Thanks for the start Douglas. Here is what I have so far. I ended up using the tile list and I got all of my images coming in via xml and I am using that as the data provider. I turned off the scroll bars I am just wondering how i can scroll the images now so the rest of my images appear. By that I mean 8 show up by I have another 20 that I want to scroll through and then repeat.
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="doComplete()" width="855" height="60"> <mx:Script> <![CDATA[ import mx.controls.Image; import mx.controls.TileList; private var loader:URLLoader; [Bindable] private var xml:XML; private function doComplete():void { loader = new URLLoader(); loader.addEventListener(Event.COMPLETE,onComplete); loader.load(new URLRequest("images.xml")); } private function onComplete(e:Event):void { xml = new XML(e.target.data); trace(xml.image.src); } ]]> </mx:Script> <mx:DefaultTileListEffect id="myTileListEffect" fadeOutDuration="500" fadeInDuration="500" moveDuration="1500" /> <mx:TileList id="tl" x="0" y="0" columnWidth="100" rowHeight="60" width="855" height="60" backgroundColor="#333366" horizontalScrollPolicy="off" verticalScrollPolicy="off" rollOverColor="#333366" dataProvider="{xml.image.src}" itemRenderer="mx.controls.Image" direction="horizontal"> </mx:TileList> </mx:Application> -- Thank You Dan Vega [EMAIL PROTECTED] http://www.danvega.org ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/groups/Flex/message.cfm/messageid:4901 Subscription: http://www.houseoffusion.com/groups/Flex/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.37
