So why doesn’t this work?
I’m lost. adding a array manual works…
.
//Array with information seems to work but xml not.
//memberInfo = [[“this works”]];
_root.input_mc.swapDepths(100000);
_root.faq.swapDepths(1000001);
_root.faq._visible = false;
var memberInfo = new Array();
var my_xml = new XML();
my_xml.ignoreWhite = true;
my_xml.load(“inputData.xml”);
my_xml.onLoad = function(success)
{
if (success) {
xmlNode = this.firstChild;
for (var i = 0; i < this.firstChild.childNodes.length; i++) {
memberInfo.push(xmlNode.childNodes*.childNodes[0].firstChild.nodeValue);
txtArray.push(xmlNode.childNodes*.childNodes[1].firstChild.nodeValue);
}
}
};
//Starting x & y values
var xPos = 150;
var yPos = 60;
//For loop to attach our container movieclip and pass the array information
for (i=0; i<memberInfo.length; i++) {
//attach the container clip
mijnmov = attachMovie(“container”, “new”+i, i, {_x:xPos, _y:yPos});
//increase the y postion each time
yPos += this[“new”+i]._height+5;
//add the information
this[“new”+i].name.text = memberInfo*[0];
this[“new”+i].interest.text = memberInfo*[1];
this[“new”+i].link = memberInfo*[2];
trace(mijnmov._target);
mijnmov.width = 800;
mijnmov.height = 600;
mijnmov.speed = Math.round(Math.random()*2)+1;
//initial positions
mijnmov.x = Math.random()*mijnmov.width;
mijnmov.y = Math.random()*mijnmov.height;
mijnmov._x = mijnmov.x;
mijnmov._y = mijnmov.y;
mijnmov.x_new = Math.random()*mijnmov.width;
mijnmov.y_new = Math.random()*mijnmov.height;
}