I am facing a tricky situation here...this is the problem...
I have a flash object over which i want to display an image
These are the tricks that i tried...
1.Playing with z-index(no use)
2.Setting the wmode parameter to transparent/opaque(again no use)
3.Using javascript and displaying image only after the page is loaded(still no use)
I tried googling but found no solutions..:(
Thanks in advance

Update-the code i am using

        <div style="position:absolute; top:0px; z-index:-2000;">
            <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="176" height="146">
                <param name="movie" value="/Images/WordOfLife.swf" />
                <param name="wmode" value="transparent" />
                <param name="quality" value="High" />
                <param name="menu" value="false" />
                <embed src="/Images/WordOfLife.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" menu="false" width="176" height="146" />
            </object>
        </div>
        <div style="position:absolute; top:0px; z-index:2000;">
            <img src="Logo.gif" alt="" />
        </div>

also tried with value="opaque"
have done all possible suggestions...pls help..

link|improve this question

You might want to rephrase "above" as "in front of" or something similar. – Zack The Human Feb 5 '10 at 7:00
yes... the image in front of the flash.. – ZX12R Feb 5 '10 at 7:02
feedback

5 Answers

up vote 4 down vote accepted

Update: I knew it was either one or the other regarding wmode, I picked the wrong one. Shouldn't have answered a question suffering from sleep deprivation. I've checked it now and wmode set to transparent is what you want. It lets you put HTML elements above Flash objects.

Secondly, embed Flash the standards friendly way, and use swfobject.

Try layering a brightly coloured div over your Flash first for test. Also, perhaps move the image code above the Flash and see how that goes.

Finally, all that's needed to get your code to work, as mentioned above by K Prime, is setting wmode to transparent in your embed tag as well.

<div style="position:absolute; top:0px; z-index:-2000;">
    <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="176" height="146">
        <param name="movie" value="/Images/WordOfLife.swf" />
        <param name="wmode" value="transparent" />
        <param name="quality" value="High" />
        <param name="menu" value="false" />
        <embed src="/Images/WordOfLife.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" wmode="transparent" menu="false" width="176" height="146" />
    </object>   
</div>

<div style="position:absolute; top:0px; z-index:2000;">
    <img src="Logo.gif" alt="" />
</div>
link|improve this answer
thanks...will check it out.. am already tryin it with a div over flash.. – ZX12R Feb 5 '10 at 11:06
wow...was very useful...but it doesn't work properly in firefox..:( – ZX12R Feb 5 '10 at 11:36
No, setting wmode to transparent won't force the Flash object to the top. To display images, or any HTML, in front of Flash Player you need to set wmode to opaque or transparent. wmode transparent will also show HTML behind empty parts of the Flash object, whereas opaque will show the background color of the Flash object, hiding anything behind the Flash object. Leaving out the wmode parameter (using the default wmode "window") will make the Flash Player take over rendering in that part of the screen, and the browser can't render anything else in that area (in most browsers). – Lars Blåsjö Feb 6 '10 at 12:21
Yes, I know how it works and what it does, I was just mistaken whether it did that in its default setting or transparent. Amended the answer so he doesn't get mislead. Thanks. – Daniel Carvalho Feb 6 '10 at 14:15
hey..thanks..:) – ZX12R Feb 9 '10 at 5:25
feedback

I'm guessing your code works fine in IE, but not in FF - add a wmode param to your embed as well:

<embed 
    src="/Images/WordOfLife.swf" 
    pluginspage="http://www.macromedia.com/go/getflashplayer" 
    type="application/x-shockwave-flash" 
    name="obj1" 
    menu="false" 
    width="176" 
    height="146"  
    embed="transparent"
/>
link|improve this answer
am not sure if i understood you completely..but when i tried the above it doesn't work at all...the flash object is not displayed..!! – ZX12R Feb 5 '10 at 12:39
@ZX12R - I meant, just change the embed part of your code, and keep the object bits – K Prime Feb 6 '10 at 7:56
feedback

I did a HTML menu dropdown purely in CSS and the Flash objects was always on top of every dropdown.

So, here's what I did. Make the Flash wmode to opaque.

For your case, make the flash object wmode to opaque and give an image a z-index higher than a flash object's z-index (try 1000 to "guarantee" higher position).

link|improve this answer
tried it...still no hope of changes..:( – ZX12R Feb 5 '10 at 9:40
feedback

When you use the z-index, make sure the CSS position of both (the img and the flash object) is set to relative or absolute:

.imgAboveFlash {
    position: relative;
    z-index: 10; /* higher than that of flash object */
}

And set the wmode of the flash object to opaque.

Make sure that the parent html element has its position set to relative.

link|improve this answer
both are absolutely positioned elements... – ZX12R Feb 5 '10 at 7:04
In combination with the transparent/opaque wmode? – davydepauw Feb 5 '10 at 7:08
no...tried them separately... – ZX12R Feb 5 '10 at 8:17
You should do it at same time, and you'll have the most success using the opaque wmode. – davydepauw Feb 5 '10 at 9:34
tried it...still no signs of change..:( – ZX12R Feb 5 '10 at 9:41
show 2 more comments
feedback

set wmode to transparent like above, but put your content into an iframe. that just solved my problems: http://argyleink.com/dieantsdie/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.