Need A Quick Fix!

the following code is from the kirupa tutorial:
[SIZE=4][COLOR=#003366]Multi-Dimensional Arrays and attachMovie.[/COLOR][/SIZE]
[SIZE=4][COLOR=#003366][/COLOR][/SIZE]
[COLOR=black]it works flawlessly - however as soon as i place this code into a movie-clip (specifically one that scrolls) my text disappears from each button.[/COLOR]
[COLOR=black][/COLOR]
[COLOR=black]I know the dynamic data is still being pulled because when i click on the download button the proper file does download.[/COLOR]
[COLOR=black][/COLOR]
[COLOR=black]what is this issue that makes the textfields invisible??[/COLOR]
[COLOR=black][/COLOR]
[SIZE=4][COLOR=#003366][SIZE=2][COLOR=black]please help![/COLOR][/SIZE] [/COLOR][/SIZE]
[SIZE=4][COLOR=#003366][/COLOR][/SIZE]

#include "traxxinfo.as"// this is the array data
//Starting x & y values
var xPos = 134;
var yPos = 50;
//For loop to attach our container movieclip and pass the array information
for (i=0; i<trackInfo.length; i++) {
 //attach the container clip
 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 = trackInfo*[0];
 this["new"+i].interest.text = trackInfo*[1];
 this["new"+i].link = trackInfo*[2];
 this["new"+i].details.text = trackInfo*[3];
}