English  Italiano  Français  Español  Dansk  Deutsch  Deutsch  Português  Suomi 
Video Lightbox

How to get the html video codes HTML code to put into my website?

Dec 02, 2011

Q: My problem is that I have a FLASH header on my site and when the lightboxes open,
they open partially under the top FLASH area. All browsers except Chrome show the background
player white box area under the FLASH, w/video over FLASH. Chrome shows all aspects under the FLASH.

I am also using on the same site your VisualLightBox and the photos open perfect over the FLASH header are.
How can I get the videos to do the same?

A: You can try to add the following parameters for flash objects:

<PARAM NAME=wmode VALUE=opaque>


and

WMODE="opaque" for EMBED tag

It allows to overlap a flash movie by other layers.

For example:

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="120" HEIGHT="40">
<PARAM NAME=movie VALUE="data-samples/flash-deluxe-menu.swf">
<PARAM NAME=quality VALUE=best>
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<param name="wmode" value="opaque">
<EMBED src="data-samples/flash-deluxe-menu.swf" quality=best wmode="opaque"  bgcolor=#FFFFFF WIDTH="120" HEIGHT="40"
NAME="data-samples/flash-deluxe-menu" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
</EMBED>
</OBJECT>

Related