For those who tried to find a solution for embedding any Flash (SWF) Movie or Video in your web page and have not found a good solution, the source presented below have always worked for me. I combined my research into one simple solution presented below. It works for me and I hope it will work for you.
All you need to do is insert this code anywhere within the <body>…</body> tags.
<object classid=“clsid:D27CDB6E–AE6D–11cf–96B8–444553540000″
width=“650”
height=“530”
id=“FlashID”
title=“Your Flash Movie Title”>
<param name=“movie”value=“http://www.yourdomain.com/your_flash_movie.swf” />
<param name=“quality”value=“high” />
<param name=“wmode”value=“opaque” />
<param name=“swfversion”value=“9.0.45.0” />
<!–– Next object tag is for non–IE browsers. So hide it from IE using IECC. ––>
<!––[if !IE]>––>
<object type=“application/x–shockwave–flash”data=“%20www.yourdomain.com/your_flash_movie.swf”
width=“650”
height=“530”>
<!––<![endif]––>
<param name=“quality”
value=“high” /><param name=“wmode”
value=“opaque” /><param name=“swfversion”
value=“9.0.45.0” /><!–– The browser displays the following alternative content for users with Flash Player 6.0 and older. ––>
<div>
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
<p><a href=“http://www.adobe.com/go/getflashplayer”
rel=“nofollow”
target=“_blank”><img src=
“http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif”
alt=“Get Adobe Flash player”
width=“112”
height=“33” /></a></p>
</div><!––[if !IE]>––>
</object> <!––<![endif]––>
</object>
Comment Here