Flash File (.swf) is not loading in IE, works fine in FF
I have some video tutorial uploaded on my website. I tried it on FF and it worked perfectly but when I tried on IE, I did not get anything. I checked on google and after spending much time, I found the problem. I am explaining with example.
<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="banner" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="754" height="64"> <param name="movie" value="banner.swf"> <param name="quality" value="High"> <embed src="http://www.domain.com/video/banner.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="banner" width="754" height="64" quality="High"> </object>
Now IE uses param movie tag to download swf file and FF uses embed src tag to download swf. Now you realized why IE is not displaying flash object. Correct code would be
<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="banner" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="754" height="64"> <param name="movie" value="http://www.domain.com/video/banner.swf"> <param name="quality" value="High"> <embed src="http://www.domain.com/video/banner.swf" pluginspage="http://www.macromedia.com/go/getflashplayer"type="application/x-shockwave-flash" name="banner" width="754" height="64" quality="High"></object>
Note: Due to some legal issues, IE had a “Click to Activate” restriction on swf and flash files. It requires the user to click on the control to load swf file. Above mentioned issue is different than this one. To learn more about the resolution visit http://www.adobe.com/devnet/activecontent/articles/devletter.html. It contains latest change and how to work around the IE restriction issue. (Thanks to Baljeet for bringing this issue up)

I had the same problem,and i solved it like your way!!
Thank you very much!!
Wow…maaad skills!! there i was cursing out IE for my lack of understanding..great stuff
awesome ! thanks a ton ! u saved my day !
Thnax a lot for this useful post, i was scratching my head for a long time with this problem…
Solved mine too,
Hats off for the great minds that share solutions.
Thanks to Google for facilitating to get here to read the solutions
- George Kottackakathu Thomas
Thank you so much for putting this together. That code helped me a lot…
u can try this >>>
Delete IE 6.0, 7.0, 8.0 and anothers and install and use only firefox or chrome… just recommend to your friends and customers and everybody tell the same. I will !
I have faced the same problem,,,, i got the solution with this blog
Thanks DUDE..
Thank You
I also had the same problem, but now is all gone and it’s all Thaxx to you
Keep up the supeb work
This did not work for me…in firefox it takes my file and adds a white background to it where it should be transparent, and in internet explorer it is still just showing up blank with an x where it should be…any suggestions?