Flash8 AS2 parsing text from XML

Hello there,
http://mediadesign.bg/etere - this is the current site, I’m working on. It’s almost finished, but one problem occurred for me - page “NEWS” form the left menu :
I have images which coming from the XML and they’re listing with some padding - the function is like this :

///// listing images
function thumbnails_fn(k) {
thumbnail_mc.createEmptyMovieClip(“t”+k, thumbnail_mc.getNextHighestDepth());
tlistener = new Object();
tlistener.onLoadInit = function(target_mc) {
target_mc._y = hit_left._y+(target_mc._height+30)*k;
};
image_mcl = new MovieClipLoader();
image_mcl.addListener(tlistener);
image_mcl.loadClip(image[k], “thumbnail_mc.t”+k);
}
//////end of listing

so this is working properly, but I want to list the text with the news assigned with every image at the right part, at the moment they are only 10 text fields in a _mc which is moving with the images which means if there’s a new news the images will be listed but there will be no text fields for the text. And I don’t know how to create text fields listed like the images…
I’ve tried some As like this :

////// listing images and textfields
function thumbnails_fn(k) {
thumbnail_mc.createEmptyMovieClip(“t”+k, thumbnail_mc.getNextHighestDepth());
text_mc.createEmptyMovieClip(“t”+k, text_mc.getNextHighestDepth());
tlistener = new Object();
tlistener.onLoadInit = function(target_mc) {
target_mc._y = hit_left._y+(target_mc._height+30)*k;
};
txlistener = new Object();
txlistener.onLoadInit = function(targetx_mc) {
targetx_mc._y = hit_left._y+(targetx_mc._height+30)*k;
targetx_mc.border = true;
targetx_mc = new TextField(“text_mc.t”+k, getNextHighestDepth, txt_left, txt_top, 360, 20);
};
image_mcl = new MovieClipLoader();
image_mcl.addListener(tlistener);
image_mcl.loadClip(image[k], “thumbnail_mc.t”+k);
//textfield
txt_left = thumbnail_mc._x+210;

txt_top = targetx_mc.t._y;
//imagex_mcl = createTextField("text_mc.t"+k, getNextHighestDepth, txt_left, txt_top, 360, 20);
imagex_mcl = new MovieClipLoader();
imagex_mcl.addListener(txlistener);
imagex_mcl.load(description[k], "text_mc.t"+k);
imagex_mcl.border = true;

//end
but it only creates 1 text field, not a list.

The source for the images is taken from the Kirupa Tutorial for Dynamic Gallery with thumbnails, and if you know how to solve my problem … please help.
Martin
www.fragment33.com