WMODE – Flash overlapping problem

royalflushcards

When we use mixed html and flash content, we usually face the problem of overlapping flash contents over html text. In the case of mere html we use z-index to format which content should be on top. But Z-index cannot do nothing here. So the recommended option is wmode parameter.   Sometimes the wmode mode also does not help us to avoid this overlapping problem. This is because sometimes we forgot to add wmode in two places. We need to add wmode = transparent  or opaque in both flash var and in embedded tag parameter like this:

<param name=”wmode” value=”transparent”>

<object wmode=”transparent” />

A detailed description can be found from the makers : http://kb2.adobe.com/cps/142/tn_14201.html

2 Comments

2 Responses to “WMODE – Flash overlapping problem”

  1. Narasimha Rao December 30, 2009 at 8:29 am #

    hi Sajith,

    thank u for sharing some good information.

    i need a small clarification, i am displaying third party ads which contain flash without wmode, so my site is getting overlapping, is there any option which i can do from side in my website without disturbing the ad.

    regards
    narasimha

    • Sajith M.R December 30, 2009 at 4:28 pm #

      Which is your website ?

More in php (34 of 101 articles)


Flash messages or notification messages are very essential part of every update/edit or delete operations. We either use ajax update ...