I'm working in Dreamweaver 8, and I'm using a small flash movie as an animated rollover. When you click (ideally) on the flash movie, it opens a link in a new window. This works perfectly well in Safari, but in Internet Explorer 6 on Windows XP, it doesn't work at all. Here is the code:
<object classid="clsid
27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="100" height="100" onclick="MM_openBrWindow('h426.html','','width=650,height=510,left=600,top=75')">
<param name="movie" value="images/h426.swf" />
<param name="quality" value="high" />
<embed src="images/h426.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100" height="100"></embed>
</object>
the only error I get in Dreamweaver is that the onClick function is not supported by Netscape Navigator 6; doesn't say a word about IE6. There is another (perhaps related) error message that states that the embed tag varies by plug-in, and that I should check that all tags are valid.
so, two questions:
1) how the hell can I make this work with IE6, and
2) how can I check that the embed tags are valid
thanks in advance...
<object classid="clsid
<param name="movie" value="images/h426.swf" />
<param name="quality" value="high" />
<embed src="images/h426.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100" height="100"></embed>
</object>
the only error I get in Dreamweaver is that the onClick function is not supported by Netscape Navigator 6; doesn't say a word about IE6. There is another (perhaps related) error message that states that the embed tag varies by plug-in, and that I should check that all tags are valid.
so, two questions:
1) how the hell can I make this work with IE6, and
2) how can I check that the embed tags are valid
thanks in advance...