@ardnak the XML is there you just need to point to it.
Change:
<script type="text/javascript">
var fo = new SWFObject("viewer.swf", "viewer", "100%", "100%", "8", "#474747");
// SIMPLEVIEWER CONFIGURATION OPTIONS
// To use an option, uncomment it by removing the "//" at the start of the line
// For a description of config options, go to:
// http://www.airtightinteractive.com/simpleviewer/options.html
//fo.addVariable("xmlDataPath", "gallery.xml");
//fo.addVariable("firstImageIndex", "5");
//fo.addVariable("langOpenImage", "Open Image in New Window");
//fo.addVariable("langAbout", "About");
//fo.addVariable("preloaderColor", "0xFFFFFF");
fo.write("flashcontent");
</script>
To:
<script type="text/javascript">
var fo = new SWFObject("web/viewer.swf", "viewer", "100%", "100%", "8", "#474747");
fo.addVariable("xmlDataPath", "web/gallery.xml");
fo.write("flashcontent");
</script>
Mike Richards
SimpleViewer Support Team.