ciao a tutti
dandovi il codice che c'è nel fla mi sapreste dire come deve essere il file xml???
grazie
------------------------------------------------------

myXML = new XML();
myXML.ignoreWhite = true;
myXML.load("images.xml");
myXML.onLoad = startSlideShow;

function startSlideShow(success) {
if (success == true) {
rootNode = myXML.firstChild;
totalSlides = rootNode.childNodes.length;
firstSlideNode = rootNode.firstChild;
currentSlideNode = firstSlideNode;
currentIndex = 1;
updateSlide(firstSlideNode);

}
}
function updateSlide(newSlideNode) {
imagePath = newSlideNode.firstChild.nodeValue;
this.img_din.loadMovie("images/" + imagePath);
}

-----------------------------------------------------