Answer the question
In order to leave comments, you need to log in
How to display an image if the browser does not support flash?
I'm trying to display an image using the noembed tag in the absence of flash support
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" height="400" width="640">
<param name="menu" value="false">
<param name="quality" value="high">
<param name="wmode" value="direct">
<param name="movie" value="myflash.swf">
<embed height="400" menu="false" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" src="myflash.swf" type="application/x-shockwave-flash" width="640" wmode="direct">
<noembed>
<img src="image.gif"
width="640" height="400"/>
</noembed>
</object>
Answer the question
In order to leave comments, you need to log in
The solution is the following if someone needs it
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" height="400" width="640">
<param name="menu" value="false" />
<param name="quality" value="high" />
<param name="movie" value="myflash.swf" />
<!--[if !IE]>-->
<object height="400" data="myflash.swf" type="application/x-shockwave-flash" width="640" wmode="direct">
<!--<![endif]-->
<img src="image.gif" width="640" height="400" />
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
Now who else is doing something on the flash?
Maybe stop mocking and move on to other solutions?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question