Well, although you cannot change the fact that your flash movies will always be rectangular, you can give the illusion that it is any shape you like by getting rid of the background colour.
It all lies in your HTML coding for embedding flash movies. Take a look:
- Code: Select all
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ID="mymovie" width="250" height="100">
<param name="movie" value="mymovie.swf">
<param name="quality" value="high">
<param name="wmode" value="Transparent">
<embed src="mymovie.swf" quality="high" bgcolor="#FFFFFF"
type="application/x-shockwave-flash" >
</object>
Notice that the value for wmode is transparent. This is the key part and it basically makes the background of the flash movie transparent - try it for yourself



