[quoted text, click to view] > Everything was fine as far as this issue goes. i.e. THe page would loud and
> there was not any white box. I made some changes to the page itself (added a
> gif) and a link, to the page the .swf is located on. THen I began getting a
> white flash before my movie loaded. I removed the .gif thinking that might of
> been the problem, but white flash the size of my stage shows first.
>
www.lifepaper.com The problem lay in the code of the html document.
What happens there is that the html does not know what color to give the to
space define by object / embed tags so it gives white as it is the default color of flash player.
The information on the color are store on first frame of the movie so once the movie start loading
the background color is set ON.
But , we can force it to have background color before the content load by simply placing a color
tags in both , the object and the embed tags.
<PARAM NAME=bgcolor VALUE=#00000>
and
<EMBED bgcolor=#00000
Best to use the File - Publish Setting feature in flash.
If publish from there , flash automatically while generating the html with
all the tags , will place the color of authoring fla as default color of the tags.
Anyway , the current one looks like :
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
width="550" height="400" title="November">
<param name="movie" value="Novemberblue2004.swf">
<param name="quality" value="high">
<embed src="Novemberblue2004.swf" quality="high"
pluginspage="
http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"
width="550" height="400"></embed>
</object>
and should look like :
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
WIDTH="550" HEIGHT="400" id="November" ALIGN="">
<PARAM NAME=movie VALUE="Novemberblue2004.swf">
<PARAM NAME=loop VALUE=false>
<PARAM NAME=menu VALUE=false>
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#000066>
<EMBED src="Novemberblue2004.swf" loop=false menu=false quality=high bgcolor=#000066
WIDTH="550" HEIGHT="400" NAME="November" ALIGN=""
TYPE="application/x-shockwave-flash" PLUGINSPAGE="
http://www.macromedia.com/go/getflashplayer"> </EMBED>
</OBJECT>
--
Regards
urami_*
<hol>
http://flashfugitive.com/ </hol>
By The way: