Get xml text into MovieClip

Hey,

I´m trying to print out text from my xml file to my scrolling menu. When I print out everything in the _root everything work exactly the way I want it. But when I try to print into an MovieClip, nothing works. I don´t know what to do, please help me some one!!!

Her is the code that print out the text info from my xml.


function makeTextField () {
 for (var i = 0; i<artikelXml.length; i++){
  var posx = 140+(i*40);
  var txtname = "txt_"+i;
  _root.test.createTextField(txtname,1000+i,posx,100,40,20);
  obj = get(txtname);
  _root.test.obj.border = true;
  _root.test.obj.text = artikelXml*;
 }
}