Archive

Posts Tagged ‘thickbox’

Flash overlaps Lightbox/Thickbox

March 7th, 2010

Example:

The flash object actually overlaps Lightbox or Thickbox image.

Solution:
Add the following code after the Object tag.

1
<param name="WMode" value="transparent"></param>

And add the following code in the Embed tag.

1
wmode="transparent"

It should looks something like this:

1
2
3
4
<object width="300" height="220">
<param name="WMode" value="transparent"></param><param name="movie" value="http://www.flash.com"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param>
<embed wmode="transparent" src="http://www.flash.com" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="300" height="220"></embed>
</object>

Result:

Willie Programming , , , , ,