Problem getting flash embed to show up in html page?

Mike H

New member
Hey, can anyone shed some light on this issue i'm having?
I've created a .swf and am trying to embed it in my web document. Validator says all the syntax is correct. And when i load the webpage, the flash player flashes white for an instant before disappearing. I've tried many different things and tweaked the code attempting to get the flash video to show up but i can't

I tried this:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,2,0"
width="600"
height="300">
<param name="movie" value="fireworks.swf"/>
<param name="quality" value="high"/>
<param name="SCALE" value="showall"/>
<embed src="http://pcrevolution.co.uk/iswf/fireworks.swf" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash type=application/x-shockwave-flash"
width="600" height="300">
</embed>
</object>

and this:
<object type="application/x-shockwave-flash" data="http://pcrevolution.co.uk/swf/fireworks.swf" width="600" height="300">
<param name="movie" value="http://pcrevolution.co.uk/swf/fireworks.swf" />
<param name="quality" value="high" />
<param name="wmode" value="opaque"/>

</object>

But haven't had any luck
 
Back
Top