Thanks felix - still not there yet -
I suspect imageData.aspx is not working correctly
[http://80.68.40.219/bookhamcragrats/sim … eData.aspx]
... as the gallery.xml is not changing
[http://80.68.40.219/bookhamcragrats/sim … allery.xml]
Any ideas where I'm going wrong?
Code Snippets -
[imageData.aspx]
' 3) Set the xmlDataPath in index.html:
'
' in the object tag:
' <param name=FlashVars value="xmlDataPath=imageData.aspx">
'
' and in the embed tag:
' ... FlashVars="xmlDataPath=imageData.aspx"/>
'
Sub Page_Load(Sender As Object, E As EventArgs)
'Dim imgPath as String = "gallery/wedding/celebration/images/"
'Dim thumbPath as String = "gallery/wedding/celebration/thumbs/"
Dim imgPath as String = ""
Dim thumbPath as String = ""
################
[index.html]
<div id="flashcontent">SimpleViewer requires Macromedia Flash. <a href="http://www.macromedia.com/go/getflashplayer/">Get Macromedia Flash.</a> If you have Flash installed, <a href="index.html?detectflash=false">click to view gallery</a>.</div>
<script type="text/javascript">
var fo = new SWFObject("viewer.swf", "viewer", "100%", "100%", "7", "#181818");
fo.addVariable("xmlDataPath", "imageData.aspx");
fo.addVariable("preloaderColor", "0xffffff");
fo.addVariable("xmlDataPath", "gallery.xml");
fo.write("flashcontent");
</script>
</body>