svBuilder is changing the gallery.xml on the server ( Apache on my computer ). In my editor I can see that it has been changed and saved.
<!-- SIMPLEVIEWER HEAD. Paste this into the head of the HTML page-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.galleryURL = "gallery.xml";
var params = {};
params.bgcolor = "222222";
params.allowfullscreen = true;
params.allowscriptaccess = "always";
swfobject.embedSWF("simpleviewer.swf", "flashContent", "70%", "75%", "9.0.124", false, flashvars, params);
</script>
Even though the gallery.xml file is updated the viewer acts like it is reading the the original xml file from before. My gallery.xml, index.html, simpleviewer, swfobject files are all in the same directory. If I remove the gallery.xml file from the this directory it still seems to find the original gallery file somewhere- this is odd. The viewer should find it in the current directory that index is in. In short... the svBuilder is changing the gallery.xml but the viewer seems to reading a different one.
Thanks for the help.
Tom