I’m trying to load text from an xml file into flash. Thats working fine only problem is I want to load all of the data into flash. Right now it’s only loading the first “node”??.
here’s the code
iArray = new Array();
my_xml = new XML();
my_xml.ignoreWhite = true;
my_xml.onLoad = function(loaded) {
if (loaded) {
var gallery = my_xml.firstChild.childNodes;
for (i=0; i<gallery.length; i++) {
var iArray = gallery*.attributes.title;
myText.text = iArray;
trace("titled "+iArray);
}
}
};
my_xml.load("test.xml");
myText.html = true;
myText.wordWrap = true;
myText.multiline = true;
myText.autoSize = true;
myText.label.condenseWhite = true;
here’s what’s in the xml
<?xml version="1.0" encoding="UTF-8"?>
<gallery>
<image title="school: an institution for educating children : Ryder's children did not go to school at all : "/>
<image title="garden: a piece of ground, often near a house, used for growing flowers, fruit, or vegetables. "/>
<image title="shop: a building or part of a building where goods or services are sold; a store : a card shop"/>
</gallery>
I believe this is what you are looking for …
ActionScript Code:
[LEFT]my_xml = [COLOR=#000000]new[/COLOR] [COLOR=#0000ff]XML[/COLOR]COLOR=#000000[/COLOR];
my_xml.[COLOR=#0000ff]ignoreWhite[/COLOR] = [COLOR=#000000]true[/COLOR];
<?xml version="1.0" encoding="UTF-8"?>
<gallery>
<image >
<title>school an institution for educating children : Ryder's children did not go to school at all </title>
</image>
<image >
<title>garden: a piece of ground, often near a house, used for growing flowers, fruit, or vegetables.</title>
</image>
<image >
<title>shop: a building or part of a building where goods or services are sold; a store : a card shop</title>
</image>
</gallery>