I have this code here to play an SWF file in my website
<p style="margin-top:20px; margin-bottom:20px;">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" width="675" height="500" id="video">
<param name="movie" value="http://cowelllaserhair.com/video.swf" />
<param name="quality" value="high" />
<embed src="http://cowelllaserhair.com/video.swf" quality="high" width="675" height="500" name="map" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"> </embed>
</object>
</p>
In Google Chrome, Firefox and IE its just a blank white space...what am I doing wrong, the file is correct and working, is there something wrong with my code or is there a better way to do this?
I also went to the following URL http://www.ehow.com/how_8314260_include-swf-html.html and used this code...
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" WIDTH="600" HEIGHT="300" id="myvideo">
<PARAM NAME=movie VALUE="video.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED href="video.swf" quality=high bgcolor=#FFFFFF WIDTH="600" HEIGHT="300" NAME="myvideo" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
</EMBED>
</OBJECT>
same results just a blank white space