Hi,
I'm trying to create a news list that pulls the headline from an xml file.
This is all working. I am able to duplicate the movie that the headline sits in but I'm having problems getting the second, third headline to sit under the previous headline. I have a movieclip with a dynamic text field in which is set to autoSize. All previous attempts of doing this have caused the second headline to overlap the first one. All headlines are different lengths, hense autosize.

Here is my current code

Code:
function loadHL () {
	headlineMC = this.feedmc.feed.headlines.duplicateMovieClip("headlines"+i, i);
	headlineMC.id = i;
	headlineMC.tnews.text = ndate[i];
	headlineMC.thead.text = news[i];
	headlineMC.thead.autoSize = true;
	headlineMC._y = headlineMC._y + headlineMC._height*i;
}
Can anyone help this?? I've searched around for the last 2 days trying to fix this and the boards are my last resort!
Thanks in advance

James