Topic: I need some help, I have Dreamweaver CS4 and need to imbed simpleviewe
I need some help, I have Dreamweaver CS4 and need to imbed simpleviewer into my current html page. I have the most currnet flashplayer and all. How do I do this? http://www.skinnyatlas.net/GraphicDesign.html
This is in my html page
<script type="text/javascript" src="swfobject.js"></script>
<div id="flashcontent">SimpleViewer requires JavaScript and the Flash Player.
<a href="http://www.macromedia.com/go/getflashplayer/">Get Flash.</a></div>
<script type="text/javascript">
var fo = new SWFObject("SimpleViewer/viewer.swf", "viewer", "640", "640", "8", "#181818");
fo.addVariable("xmlDataPath", "SimpleViwer/gallery.xml");
fo.write("flashcontent");
</script>
and here is my .xml:
<?xml version="1.0" encoding="UTF-8"?>
<simpleviewerGallery maxImageWidth="480" maxImageHeight="480" textColor="0xffffff" frameColor="0xffffff" frameWidth="20" stagePadding="40" navPadding="40" thumbnailColumns="3" thumbnailRows="3" navPosition="left" vAlign="center" hAlign="center" title="SimpleViewer Title" enableRightClickOpen="false" backgroundImagePath="" imagePath="" thumbPath="">
<image>
<filename>FallingUpAcousticEPCDcover.jpg</filename>
<caption>FallingUpAcousticEPCDcover.jpg</caption>
</image>
<image>
<filename>SHBtshirtHolyShirt.jpg</filename>
<caption>SHBtshirtHolyShirt.jpg</caption>
</image>
<image>
<filename>TheSHBCoverUPCover.jpg</filename>
<caption>TheSHBCoverUPCover.jpg</caption>
</image>
<image>
<filename>TheSHBPromoCDCover.jpg</filename>
<caption>TheSHBPromoCDCover.jpg</caption>
</image>
<image>
<filename>XmasCDcover.jpg</filename>
<caption>XmasCDcover.jpg</caption>
</image>
</simpleviewerGallery>
Everything is in the a folder labeled "SimpleViewer" in the website folder (images, xml, swf, swobject.js)
Help?