This is a message.

Placing HTML on top of a flash object

It is possible to place HTML elements in front of the Flash movies to prevent the Flash from showing through. This is achieved by setting the wmode property to opaque. Then the Flash object can accept placement and positioning like any other element including the the z-index CSS property. Here is an example:

This layer is on top of the Flash object
standalone demo

This feature does not work on Linux and in early versions of Opera, but browser support is still quite good.

JavaScript setup

This is our JavaScript setup:

// wmode parameter does the trick
flashembed("flash", {src: "/media/swf/global/flash10.swf", wmode: 'opaque'});

JavaScript