XML issue
XML issue
- Started
- Last post
- 4 Responses
- DBitW
I seem to have a problem with my XML not loading when on the internet, can anyone give me a hand in piointing me in the right direction for help?
- chimchim0
myXML.onLoad = function(success){
//now it's safe to use it
}
- DBitW0
I have this, ut i'll try your way
function MenuSystem(success) {
if (success == true) {
trace("XML has loaded");
- chimchim0
the xml object itself has to execute it's onLoad callback to get your party started.
myXML = new XML();
myXML.ignoreWhite = true;
myXML.onLoad = function(success){init();
}
myXML.load("myfile.xml");
- DBitW0
I think I got it now bro, thank you for the help!