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="bigwebmaster-sign.swf">
<param name="quality" value="high">
<param name="menu" value="false">
[color=red]<param name="bgcolor" value="#333333">[/color]
<embed name="bigwebmaster_sign" src="bigwebmaster-sign.swf" quality="high" [color=red]bgcolor="#333333"[/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="bigwebmaster-sign.swf">
- <param name="quality" value="high">
- <param name="menu" value="false">
- [color=red]<param name="bgcolor" value="#333333">[/color]
- <embed name="bigwebmaster_sign" src="bigwebmaster-sign.swf" quality="high" [color=red]bgcolor="#333333"[/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>
However --
I would ask this, why is it you have it seperated into many swf's and not
using seperate mc's (movieClip) within the original swf? This would allow
you to preload the entire movie at one time, and produde the seemless
transition you want.
UNFLUX.FOTO