Topic: Custom XML path for slideshow
To set a custom path for the XML Flash Slideshow, you need to pass a flashvar "file" to slideshow.swf in the html of your page. The following code will force the slideshow to load xml/images.xml instead of the default slideshow.xml:
<script type="text/javascript">
var so = new SWFObject("slideshow.swf", "gallery", "435", "300", "6", "#000000");
so.addVariable("file", "xml/images.xml");
so.write("flashcontent");
</script>-- Rene Descartes