[SWFObject] Express Install unsupported

Geoff Stearns geoff at deconcept.com
Fri Oct 20 07:04:45 PDT 2006


hmm, well in that case there is a way for you to just add the check  
manually for each movie..

you can do a version lookup and check the version like this:

var doExpressInstall = true;
var version = deconcept.SWFObjectUtil.getPlayerVersion();
if (document.getElementById && (version['major'] == 8 && version 
['minor'] == 27)) {
	doExpressInstall = false;
}

then in your swfobeject code:

so = new SWFObject("movie.swf", "movie", 500, 500, 9, "#ffffff",  
doExpressInstall);



of course you can add in checks for whatever other versions have  
issues as well.




On Oct 20, 2006, at 9:54 AM, Andrew Wason wrote:

> The problem we were having is a lot of users had 8.0.27.0 because that
> is what Apple was shipping with new Intel Macs (or they may have been
> getting it automatically via MacOS Software Update)
>
>> I didn't include a check for those players because they were beta/
>> prerelease players, so in theory, only flash devs would have those
>> versions installed...
>>
>> 'normal' users should only have players that support the upgrade, so
>> you probably don't have to worry about it.
> _______________________________________________
> SWFObject mailing list
> SWFObject at lists.deconcept.com
> http://lists.deconcept.com/listinfo.cgi/swfobject-deconcept.com




More information about the Swfobject mailing list