How to make SWF with transparent (invisible) background
In Flash Mixer & Flash Joiner you can create Flash movie with any shape;
In FLIP Flash Album Deluxe you can create albums with different shapes;
In Kaleido Flash you can pick squre, round, star shapes.
But why there is only white background color on my web page?
To solve this problem, you should have a little HTML skill and follow our FAQ. If you do not know anything about HTML, just contact us http://www.goztun.com/support and we will help you via email.
First, make sure the SWF you made is a non-rectangle shape, so that you can see the effect of the invisible background. Then you need to copy and paste the HTML code to insert this SWF.
- <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codeBase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="800" height="600"><!-- Change the width and height of the movie -->
- <param name="Movie" value="YOURMOVIE.swf"/><!-- Change the file path of the movie -->
- <param name="WMode" value="Transparent"/><!-- This is very important for transparent -->
- <param name="Quality" value="High"/>
- </object>
Please do not forget to change the value of your SWF’s width, height, filepath, both of “param” and “embed” tag.
You can use some HTML editor like Dreamweaver or Front Page, and click “Insert Flash”, and the HTML code will be written automaticly. For Dreamweaver or Front Page, you need to switch your workspace to “Code” tab, then please add a line
- <param NAME="wmode" value="transparent"/>
after
- <param NAME="movie" value="YOURMOVIE.swf"/>
After you finishing the steps, please save the HTML file and view it in your web browser, you will see the background image though the transparent SWF.