Put a flash in the background

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
jacque99
Forum Newbie
Posts: 9
Joined: Tue Sep 07, 2010 9:02 am

Put a flash in the background

Post by jacque99 »

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
Attachments
TesteFlash4.zip
(2.3 KiB) Downloaded 73 times
Bind
Forum Contributor
Posts: 102
Joined: Wed Feb 03, 2010 1:22 am

Re: Put a flash in the background

Post by Bind »

Code: Select all

<param name="wmode" value="transparent" />
will allow you to place content on top of the flash

z-index and/or absolute positioning may work for getting your content on top of the flash.
jacque99
Forum Newbie
Posts: 9
Joined: Tue Sep 07, 2010 9:02 am

Re: Put a flash in the background

Post by jacque99 »

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
jacque99
Forum Newbie
Posts: 9
Joined: Tue Sep 07, 2010 9:02 am

Re: Put a flash in the background

Post by jacque99 »

Thank you very much for the reply, it works well, here is the link
http://www.mestestes.eu/teste1/
Www.mestestes.eu in this link, I put a flash and a background image, if the user does not flash, the image will appear in the background instead.
The script works, but there are problems such as image offset in the flash.
I'm listening to you with optimizations
Post Reply