Hi, I am a noob to the flash XML stuff. I have been working on a website for a local realtor and I am tring to setup a flash slide show for their listings. I got the slideshow working but I am having problems getting it to be automated with controls could someone help me please? Here is the code I have so far–
slides_xml = new XML();
slides_xml.load("slideshow.php");
slides_xml.onLoad = startSlideShow;
slides_xml.ignoreWhite = true;
//
// Show the first slide and intialize variables
function startSlideShow(success) {
if (success == true) {
rootNode = slides_xml.firstChild;
totalSlides = rootNode.childNodes.length;
firstSlideNode = rootNode.firstChild;
currentSlideNode = firstSlideNode;
currentIndex = 1;
updateSlide(firstSlideNode);
}
}
//
// Updates the current slide with new image and text
function updateSlide(newSlideNode) {
imagePath = newSlideNode.attributes.jpegURL;
slideText = newSlideNode.firstChild.nodeValue;
address = newSlideNode.attributes.address;
city = newSlideNode.attributes.city;
zip = newSlideNode.attributes.zip;
loadMovie(imagePath, targetClip);
}
//
// Event handler for 'Next slide' button
next_btn.onRelease = function() {
nextSlideNode = currentSlideNode.nextSibling;
if (nextSlideNode == null) {
break;
} else {
currentIndex++;
updateSlide(nextSlideNode);
currentSlideNode = nextSlideNode;
}
};
//
// Event handler for 'Previous slide' button
back_btn.onRelease = function() {
previousSlideNode = currentSlideNode.previousSibling;
if (previousSlideNode == null) {
break;
} else {
currentIndex--;
currentSlideNode = previousSlideNode;
updateSlide(previousSlideNode);
}
};
and here is the XML doc –
<Slides>
<slideNode jpegURL="images/1818ChiprockFront-3.jpg" address="1818 Chiprock Dr" city="Marysville" zip="43040">$259,900.00 </slideNode>
<slideNode jpegURL="images/44EBomfordfront-3.jpg" address="44 E. Bomford" city="Richwood" zip="43344">$119,900.00 </slideNode>
<slideNode jpegURL="images/16518lakewoodlanefront-3.jpg" address="16518 Lakewood Ln" city="Marysville" zip="43040">$224,900.00 </slideNode>
<slideNode jpegURL="images/976Militaryfront-3.jpg" address="976 Military" city="Galloway" zip="43119">$227,900.00 </slideNode>
<slideNode jpegURL="images/31195 sr37front-3.jpg" address="31195 SR 37" city="Richwood" zip="43344">$136,900.00 </slideNode>
</Slides>