You can't just take an html code and paste into Zen Cart and expect it work. The html page is divided into <head> and <body>. Zen Cart in the end is rendered as an html page with all elements where they belong. By pasting the html code as is into the define page editor your html page is rendered to the browser as
HTML Code:
<head>
</head>
<body>
<head>
</head>
<body>
</body>
</body>
Is there anything wrong with this picture???
Now I am not going to go into details on how to install it as I have never used this script. But you need to move everything in the <head> into your template common/html_header.php such as:
HTML Code:
<script type="text/javascript" src="http://www.domain.com/swfobject.js"></script>
<script type="text/javascript">
swfobject.registerObject("myFlashContent", "9.0.0");
</script>
Adjust the path based on where you have the script.
The content inside the <body> can be included into Zen Cart body:
HTML Code:
<div>
<div align="center">
<p>
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" width="600" height="330" id="myFlashContent" align="middle">
<param name="movie" value="/carousel/carousel.swf />
<param name="loop" value="true" />
<param name="quality" value="best" />
<param name="allowscriptaccess" value="always" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="/carousel/carousel.swf" width="600" height="330" align="middle">
<param name="loop" value="true" />
<param name="quality" value="best" />
<param name="allowscriptaccess" value="always" />
<!--<![endif]-->
<a href="http://www.adobe.com/go/getflashplayer">
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
</a>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</p>
</div>
I didn't verify your body code so you need to make sure everything is pointing to the right location on your server. Always use full path when using external mods.