Dynamicly create nested movieclips

Hi I´m trying to make a newspage in flash which is updateable throug a simple textfile.

I´m loading text into an array, then split it up with a delimiter in the textfield, an create a new textfield for each delimiter. This works perfectly, but when i try to put all of this inside another movieclip, in order to make the hole thing scrollable insaide a box, it doesn´t work.

I´m all new to actionscript, so maybe this is not the way to do it at all. I´m happy for any ideas.

the code:
_root.nytt_container.nytt_fade_inn.createEmptyMovieClip(“nytt_holder_mc”, 1);
with (nytt_holder_mc) {
//beginFill(0xffffff, 100);
moveTo(40, 150);
lineTo(700, 150);
lineTo(700, 380);
lineTo(40, 380);
lineTo(40, 150);
// endFill();
}

news = new Array();
lv = new LoadVars();
lv.onLoad = function() {
fl = this.nyheter;
news = fl.split(“TIBENYTT”);
c = news.length-1;
y_pos=10;
d=20;
for (i=0; i<c; i++) {
curr_name = [“container”+i];
//curr_sb = [“txt_sb”+i];
_root.nytt_container.nytt_fade_inn.nytt_holder_mc.createTextField(curr_name,d,20,y_pos,300,200);
(eval(curr_name)).html=true;
(eval(curr_name)).htmlText=news*;
(eval(curr_name)).wordWrap = true;
trace(news*);
trace(curr_name);
//trace(curr_sb);

	d = d+1;
	y_pos = y_pos+100;
};

};
lv.load(“split.txt”);