Topic: multiple galleries following old post
Hi,
I know this topic has been touched other times, I'm trying to get several galleries on one page and I've followed the successful post of thetrillest for example, but without success. I'm not sure if it's because I have another js also going on or what, could you please have a look at it. This is gallery 1
<script type="text/javascript" src="swfobject.js"></script>
<div id="flashcontent">AutoViewer requires JavaScript and the Flash Player.
<a href="http://www.macromedia.com/go/getflashplayer/">Get Flash here.</a></div>
<script type="text/javascript">
var fo = new SWFObject("autoviewer.swf", "autoviewer", "800", "600", "8", "#181818");
//Optional Configuration
//fo.addVariable("langOpenImage", "Open Image in New Window");
//fo.addVariable("langAbout", "About");
fo.addVariable("xmlURL", "gallery.xml");
fo.addParam("wmode", "transparent");
fo.write("flashcontent");
</script>
AND this is for gallery2.xml:
<script type="text/javascript" src="swfobject.js"></script>
<div id="flashcontent">AutoViewer requires JavaScript and the Flash Player.
<a href="http://www.macromedia.com/go/getflashplayer/">Get Flash here.</a></div>
<script type="text/javascript">
var fo = new SWFObject("autoviewer.swf", "autoviewer", "800", "600", "8", "#181818");
//Optional Configuration
//fo.addVariable("langOpenImage", "Open Image in New Window");
//fo.addVariable("langAbout", "About");
fo.addVariable("xmlURL", "gallery2.xml");
fo.addParam("wmode", "transparent");
fo.write("flashcontent");
</script>
not only the second gallery is not showing up, but it's actually inverting and using gallery2.xml instead of gallery.xml in the first one
this is the url in case it helps:
http://emilianozelada.com/NEWsite-REwrite-auto2.html
thank you very much in advance for your help!