Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

http://cowelllaserhair.com/video.swf

share|improve this question
Where is the code? – Sven Bieder Jan 18 at 15:34
oops sorry my bad – user1269625 Jan 18 at 15:35
look here: ehow.com/how_8314260_include-swf-html.html. there is a short explanation together with the code. When you compare that code to yours, you see the differences. – Sven Bieder Jan 18 at 15:40
I took alook at that site and used there code....still same results – user1269625 Jan 18 at 15:49
if the direct link to swf doesnt work (i get blank page) it suggests the problem is with your swf file, not the html to embed it. – Lee Burrows Jan 18 at 23:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.