Hi Miker,
I met the same problem as mottopia, i follow your instructions and change the line
var fo = new SWFObject("viewer.swf", "viewer", "800", "600", "8", "#000000");
to
var fo = new SWFObject("autoviewer.swf", "viewer", "800", "600", "8", "#000000");
"autoviewer.swf" is the file generated by the Photoshop CS3's script that i download on your website. Now i can see images it's really cool, but the only problem is that i only can see the box but not my page around, it's completely white but my background page is black... Can you have a look to my code?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="icon" type="image/png" href="/favicon.png" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>MCB | Realisation - Colmar</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="swfobject.js"></script>
</head>
<body>
<div class="blank50"></div>
<div align="center" class="logo"><a href="index.html"><img src="logo.png" width="auto" height="auto" /></a></div>
<div class="blank100"></div>
<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("autoviewer.swf", "viewer", "800", "600", "8", "#000000");
fo.write("flashcontent");
</script>
<div class="blank50"></div>
</body>
</html>
What's the problem?