Disable function loading xml in swf

diegowx

New Member
So i have swf file witch is loading data from XML. I have function for loading the first \[code\]node\[/code\] and function to load the second \[code\]node\[/code\]. Everything is working fine but when i load the second function and after that load again the first one. Some data from the second is staying in some of the fields. \[code\]var my_xml = new XML();my_xml.ignoreWhite = true;my_xml.onLoad = onXMLLoaded;function reloadXML(){ my_xml.load("direktno.xml");}my_xml.load("direktno.xml");function onXMLLoaded() { }function mach() { }\[/code\]Any ideas how to delete or block the second function and after that block the firs when im loading the second ? Thanks !
 
Back
Top