It doesn't really matter if you have CS3 or v8. they both support AS2.0, CS3 is the one that also supports AS3.0....so more choices.
So I attached the .rar file, that is an XML-file, XML-files have nothing to do with flash really...they are like HTML, but then for an other purpose. Maybe visit the link below, they have a explanation of XML that is pretty clear.
XML Tutorial
You have to links to your pictures in the XML file, and it does not matter how you call the "nodes" but it is important to place al "image" nodes at the same position. Like that the image node is always the first in the list after the Object node....or something like that.
So this is wrong:
Quote:
<Node>
<image>name here</image>
<text>text here</text>
<Node>
<Node>
<text>text here</text>
<image>name here</image>
<Node>
|
And this is right:
Quote:
<Node>
<image>name here</image>
<text>text here</text>
<Node>
<Node>
<image>name here</image>
<text>text here</text>
<Node>
|
the AS for loading the XML is pretty difficult so I will try to explain it in parts over the coming day/ days

. Because at the moment my time it limited, it could be that I won't be back before tomorrow....