mySettingsFile="http://.....xml";
xml_settings_download(mySettingsFile, "mySettingsDownloaded");
function mySettingsDownloaded(status) {
if(status == 0) {
alert("You shoud connect to the Internet before starting the application.");
} else {
about_text = mioxml_getElement(xml_settings_xml, "ABOUT", "");
alert("About Text: "+about_text);
}
} |