Ok this whole thing goes to the fact that I never reset the list in
the first place.
So what I need to do is take the list
private function resetForm():void{
tempXML.asset = false; //clear it I could also us tempXML.asset =
newXMLListCollection(tempXML.asset); either way it clears it
tempXML.asset = tempXML.asset; //redisplay it
}
This will definatley clear out the old list but now I need a way to
recall the same list from the
<mx:XML id="tempXML"
source="https://mysite.net/interface.php?action=showopen&operation=showasset\
s&format=xml&opstatus=defect"
/>
<mx:TileList dataProvider="{tempXML.asset.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:XMLListCollection id="tempXMLList" source="{tempXML.asset}"
/>
and I'm not quite sure how to do this