To embed AutoViewer (or AutoViewer-Pro) into an existing HTML page do the following:
<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.</a></div>
<script type="text/javascript">
var fo = new SWFObject("autoviewer.swf", "viewer", "800", "600", "8", "#181818");
fo.write("flashcontent");
</script>
To set the gallery size and background color, edit this line from step 3 above:
var fo = new SWFObject("autoviewer.swf", "viewer", "800", "600", "8", "#181818");
To make AutoViewer work you need to use the embed method described above. Using Dreamweaver's Insert -> Media -> SWF method will cause AutoViewer to break. This is because AutoViewer uses SWFObject to embed the SWF. SWFObject is an industry standard way to embed flash content that handles Flash player detection and upgrade prompts. Using the default Flash embed method in Dreamweaver will not work, since the config options that are set in the Javascript will be ignored.