PDA

View Full Version : Loading Remote XML



drummernath
11-24-2009, 06:20 PM
hey in this tutorial i am going to show you how to load a xml from your website without downloading the xml file



url = "http://app.infinityscape.co.uk/quizengine/quizzes/sample.xml"
path = "config/version"

HTTP.Submit(url, {}, SUBMITWEB_GET, nil, 80, nil, nil);
XML.SetXML(url);
version = XML.GetValue(path);


to set a paragraph with the nodes value use this;


Paragraph.SetText("version", "Version: "..version.."");


InfinityScape Software Studios