Hi all… kinda noob question…
I have my XML file with only some sentences i wish to create a slideshow from.
Something realy simple:
[CENTER] **[COLOR=Red]Sentence[/COLOR]
V
V
V
[COLOR=Red]Sentence (delay)[/COLOR]
V
V
V
[COLOR=Red]Sentence
[/COLOR]**[LEFT]
I have loaded my xml like so:
function loadXML(loaded) {
if (loaded) {
xmlNode = this.firstChild;
textim = [];
total = xmlNode.childNodes.length;
for (i=0; i<total; i++) {
textim* = xmlNode.childNodes*.firstChild.nodeValue;
}
} else {
content = "file not loaded!";
}
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("textim.xml");
/////////////////////////////////////
I can access the titles using dynamic text fields but i don’t know how to make it go sentence by sentence automaticly (with the animation).
I would appreciate some examples & any any help… tnx!
[/LEFT]
[/CENTER]