PDA

Click to See Complete Forum and Search --> : Falsh transparent background in DW


kerrysmagicshirt
01-12-2006, 10:03 AM
GRRRRR Transparent backgrounds seem to be the bain of my life at the mo.

here's my predicament.

i'm building a web page in Dreamweaver8 and using elements created in flash in particular the menu.
i have an image as my backround that i designed in photoshop and i would like to be able to see it behind the menu buttons.

so with a nifty bit of editing my flash html document that i published i managed to get rid of the white (set a new param as mmode bla bla bla. feel free to pm me if you want to know how to do this). test that in a browser - genius no white background.
drop the HTML file into Dreamweaver and what do you know it's back - the white background is back!:confused:

HELP!!
please try and speak in simple terms when giving me some answers my head hurts!!

unchained
01-12-2006, 05:19 PM
Hi there. It's very easy, change the param names in your dreamwaever HTML file like this and it will be Transparant for sure.

<param name=quality value=high>
<param name="wmode" value="transparent">
<param name="menu" value="false">

kerrysmagicshirt
01-12-2006, 06:27 PM
awesome thank you

unchained
01-14-2006, 09:54 AM
No problem, but I have warn you this only works for a few browsers. It does not work for the Mozilla firefox browser so you only half way there.

kerrysmagicshirt
01-15-2006, 04:02 PM
pants. most people are using firefox now - i use it at home but IE in the office. it's one of those you can't please all the people.... situations. what a mare.

unchained
01-16-2006, 06:10 AM
This script I found on some site using fire fox, you have to work out the details yourself but for this site it works on both fire fox and explorer so it is possible.

<script type="text/javascript">
myFlash = new FlashObject("/images/mainpage/epe_main_flash.swf", "swfid", "324", "376", 6, "#fff");
myFlash.altTxt = "Image Replacemnt";
myFlash.addParam("wmode", "transparent");
myFlash.write('mpflash');
</script>

kerrysmagicshirt
01-16-2006, 12:31 PM
cool - were do i insert the script? because you import the swf file not the html file?

you are being a fantastic help.