The .swf will open in IE6 because it has a Flash plugin to play the .swf directly. But you cannot display a .swf with <img>, you will need to use <object> or better yet, use some Javascript like swfobject.js to place the .swf on the page. Here's an example, but you'll also need the swfobject.js file as well as a pointer to find the file...
Code:
<div id="right>
<script type="text/javascript">
// <![CDATA[
var so = new SWFObject("map_0305_final.swf", "map_0305_final.swf", "552", "555", "8", "#000000");
so.addParam("wmode", "transparent");
so.write("nav_buts");
// ]]></script>
</right>
Check out the latest version here:
http://www.adobe.com/devnet/flashpla...object_02.html
Just using <object> will result in that annoying "Click to activate this control" message in older browsers like IE6.
Best wishes,
EfV
Bookmarks