Thank you to Tracy, Paul Andrews, Peter Ent and all the others that were with me in spirit trying to figure this out. In case any one has this same problem I am posting the solution that fixed this and this part is closed.
Thank you again. Mark Code: <mx:HTTPService id="tempXML" resultFormat="e4x" result="onResult(event)" url="https://{customer.text}.mysite.net/interface.php?action=showopen&operation=showassets&format=xml&opstatus=crit&username={username.text}&password={password.text}" /> <mx:TileList dataProvider="{_xlcMyListData}" labelField="fleet" width="344" backgroundColor="#000000" color="#ff0000" fontSize="27" borderColor="#000000" columnWidth="300" rowHeight="50" themeColor="#808080" fontWeight="bold" allowMultipleSelection="true" id="TileList1" height="0" y="202" x="178"/> <mx:Script> <![CDATA[ import mx.collections.XMLListCollection; [Bindable] private var _xlcMyListData:XMLListCollection; private function onResult(Event:ResultEvent):void { var xmlResult:XML = XML(Event.result); _xlcMyListData = new XMLListCollection(xmlResult..asset); } ]]> </mx:Script>

