Thanks for the suggestion David, but that still didn't work. See
http://tinabranan.com/test/home.html
I'm not sure what else to try. The client is adamant about it being black
while loading and I'm somewhere between my wits end and pulling every hair from
my head. Any other thoughts? I truly appreciate it!!
TalDesign,
> Thanks for the suggestion David, but that still didn't work. See
> http://tinabranan.com/test/home.html
I see a bgcolor attribute inside a <table> tag, but I don't see that
attribute inside the <object> and <embed> tags. It needs to be your
JavaScript, too.
e.g.
AC_FL_RunContent(
'width','900',
'height','530',
'src','home',
'quality','high',
'movie','home'
'bgcolor','#000000' <== here
); //end AC code
Note, I omitted two very long parameters from that snippit. The
important part is to note that the params come in pairs, and are mirrored in
the <object> and <embed> tags:
<object [lots of attributes here] >
<param name="movie" value="home.swf" />
<param name="bgcolor" value="#000000" />
...
<embed src="home.swf" [params ...] bgcolor="#000000" />
David Stiller
Adobe Community Expert
Dev blog, http://www.quip.net/blog/
"Luck is the residue of good design."
> I'm not sure what else to try. The client is adamant about it being black
> while loading and I'm somewhere between my wits end and pulling every hair
> from
> my head. Any other thoughts? I truly appreciate it!!