Put a flash in the background

Hello everyone,
In fact I am trying to make a web page, where I wanted to put a flash animation in the background.
Once when I put a div with text inside and a blue background for example, but the problem is that I always see the flash inside my div.
I added <param name=“wmode” value=“opaque” />, but concern still exists.
Thank you for your help
Enclosed is my little source code

To hide the Flash object behind the red div, try this (see in red):

<div style=“border: 1px solid red; margin-top: -50px; width: 800px; height: 80px; background-color: red;position:relative;”>

the principle is to put a flash in the background of the site, and then put content on the flash part
I wanted if I put a div over the flash, the flash does not show below the div

I changed wmode to transparent, but the problem still exists.
What I wanted to do is to not display the flash on my div that has a red background
Here is a link of my test page
www.mestestes.eu

Instead of

<param name="wmode" value="[COLOR="Blue"]opaque[/COLOR]" />

try

<param name="wmode" value="[COLOR="Red"]transparent[/COLOR]" />

still my div has a background that appears in black below the flash

See my last reply (we posted at the same time).

But where do you want it, then? All you need to do is remove margin-top: -50px to stop the overlap:

<div style="border: 1px solid red; [COLOR="Red"]margin-top: -50px[/COLOR]; width: 800px; height: 80px; background-color: red;">

Read through the sticky post at the top of this forum