what the problem is, is that the new swf isn't loaded before you call on
it. By default, flash uses a white bg for loading new movies - which is
what you are seeing.
one small workaround you can try is to set the swf's default bg color
within the html tag itself.
For the object tag:
<param name="bgcolor" value="#333333">
For the embed tag:
just slip those in and it should help.
Here's a full example of how it should look:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"
id="bigwebmaster_sign" width="150" height="80">
<param name="movie" value="flashMovie.swf">
<param name="quality" value="high">
<param name="menu" value="false">
[color=red]<param name="bgcolor" value="#000000">[/color]
<embed name="bigwebmaster_sign" src="flashMovie.swf" quality="high" [color=red]bgcolor="#000000"[/color] menu="false"
width="150" height="80"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
</embed>
</object>
- <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
- codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"
- id="bigwebmaster_sign" width="150" height="80">
- <param name="movie" value="flashMovie.swf">
- <param name="quality" value="high">
- <param name="menu" value="false">
- [color=red]<param name="bgcolor" value="#000000">[/color]
- <embed name="bigwebmaster_sign" src="flashMovie.swf" quality="high" [color=red]bgcolor="#000000"[/color] menu="false"
- width="150" height="80"
- type="application/x-shockwave-flash"
- pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
- </embed>
- </object>
doing this is an easy quick fix, but I would recommend using a preloader
so the whole flash movie loads before playing. You can search ozzu for
quite a few questions, answers, and tutorial links on preloaders.
UNFLUX.FOTO