Featured FLA
» Author: Nitin Tikhe
» Title: Cart
» Description: This Animation Tut is a fun and useful for kids below 15 years. Watch the Flag, Doors, Stick and Horse movements.
» More by Nitin Tikhe
Featured Site
» Posted in the Flash Kit Links section
» Title: Banana Swimwear
» Description: This is a banana swim wear interactive catalog we designed and animated in Flash
Now that the movie is set up, it's time to talk to the XML file!
On the actions layer, enter the following:
//create a new XML object
thisXML = new XML();
//ignore whitespace in the file
thisXML.ignoreWhite = true;
//call the LoadChartData function when the XML file is loaded
thisXML.onLoad = LoadChartData;
//load the xml file
thisXML.load("text.xml");
stop();
Replace the filename text.xml with the name of your XML file. LoadChartData is
the name of the function that will be run when the XML data has loaded.