Scroller, xml, duplicatemovie?

Right, I’ll try and explain this best I can…

I’d like to have a scrollbar which scrolls movieclips that are created depending on whether there is the information available in an xml file.

The image attached shows how the layout should be and the xml will be something like this:

<?xml version="1.0" encoding="UTF-8"?> 
<root>
	<myentry>
		<title>Title 1</title>
		<description>Description 1</description>
	</myentry>
	<myentry>
		<title>Title 2</title>
		<description>Description 2</description>
	</myentry>
	<myentry>
		<title>Title 3</title>
		<description>Description 3</description>
	</myentry>
	....etc....
</root>

If there are any examples I’d be greatly appreciative.

The kind of thing I want to create can be seen here… http://www.seewindowsvista.com.
Click on ‘engaging customers’ and then you’ll see a box to the right.
I want to create something like that, but loading in the text from xml.

The scrollbar found here is good but I can’t see how to implement the whole adding movieclips dynamically and then resizing the scrollbar etc… http://www.kirupa.com/forum/showthread.php?t=206127

Does this all include: loading in the xml, finding the node, creating a new movieclip, adding the xml information, resizing the scrollbar and then checking to see if there are anymore xml nodes?

Thanks for any help given.