Click to See Complete Forum and Search --> : embed flash in ie.7
dyers78
02-16-2007, 01:46 AM
Is there a specific way to embed a flash movie to avoid the click to activate crap? I thought I read something once but I can't find it now?
Is this what you are looking for:
<body>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="400" height="300">
<param name="movie" value="file:///C|/Documents/flash.swf">
<param name="quality" value="high">
<embed src="file:///C|/Documents_flash.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="400" height="300"></embed></object>
</body>
</html>
dyers78
02-16-2007, 02:05 PM
I don't think so. Here is what I am using now. I just thought there was a way around the click to active thing that IE7 does? Maybe not?
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" height="500" width="800">
<param name="movie" value="flash/dragfollow_spotlight.swf">
<param name="quality" value="best">
<param name="play" value="true">
<embed height="500" pluginspage="http://www.macromedia.com/go/getflashplayer" src="flash/dragfollow_spotlight.swf" type="application/x-shockwave-flash" width="800" quality="best" play="true">
</object>
chris_bcn
02-16-2007, 03:08 PM
check the sticky! - http://www.graphicdesignforum.com/forum/showthread.php?t=21494
You want to avoid all that crap and use swfobject
dyers78
02-16-2007, 08:09 PM
Thanks Chris, works like a charm!