T
T
T4-1002014-06-04 16:44:45
Adobe Flash
T4-100, 2014-06-04 16:44:45

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>

But nothing comes out.
I tried to use object instead of embed, in this case the image is displayed in the absence of flash support, but since the flash drive is interactive, this interactive does not work (and when embed saves wmode="direct" - the interactive works).

Answer the question

In order to leave comments, you need to log in

3 answer(s)
T
T4-100, 2014-06-05
@isawillbenice

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>

In order for the interactive to work, you must pass wmode="direct" not as a parameter, but as an attribute of the object tag (although there is no such attribute in the standard www.w3schools.com/tags/tag_object.asp)

S
Stepan, 2014-06-04
@L3n1n

Now who else is doing something on the flash?
Maybe stop mocking and move on to other solutions?

Y
Yuri Lobanov, 2014-06-04
@iiil

Check on the server.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question