2) how big is service.jpg? You may want to detect if the user has flash, and
if not THEN load the jpg (as otherwise you are potentially laoding a jpg and
delaying the swf loading time)
3) Do you have a prelaoder on your flvplayer.swf / how big is flvplayer.swf?
Aran
2) So you need to change the way the logic of the code works a bit.
Something like the below should work:
if (swfobject.hasFlashPlayerVersion("9.0.18"))
{
// has Flash
// call embedSWF() etc
}
else
{
// no Flash
// write jpg to DIV etc
}
Example implementation:
http://www.swffix.org/swfobject/testsuite/test_api_hasflashplayerversion.htm
l
3) As long as you have a preloader / have optimised to start showing some
content to users on 1st loading of the player, I don;t see an issue.
Aran
-----Original Message-----
From: swfo...@googlegroups.com [mailto:swfo...@googlegroups.com] On
Behalf Of Finer
Sent: Wednesday, 9 July 2008 7:39 PM
To: SWFObject
Subject: Re: First white screen(flashes for 0.5s) then SWFObject
background-color(0.5s) and only then movie starts.