vote up 0 vote down star

swfobject.getFlashPlayerVersion doesn't work in IE, any alternatives?

flag

i think you need to be a bit more specific than "doesn't work" to get any good answers. – grapefrukt Mar 5 at 10:32

2 Answers

vote up 0 vote down check

If your flash version is 10.0.12 then the following code allows you to retrieve the version nr:

var playerVersion = swfobject.getFlashPlayerVersion(); // returns a JavaScript object
var majorVersionNr = playerVersion.major; //returns the major nr: 10
var minorVersionNr = playerVersion.minor; //returns the minor nr: 0
var releaseVersionNr = playerVersion.release; //returns the version nr: 12
link|flag
the problem im having is that in IE when i try the following: playerVersion.major == "0" and if i dont have Flash installed IE doesnt not recognise the command – ccdugga Mar 5 at 10:59
so playerVersion == null? Doesn't that say enough then? – Zaagmans Mar 5 at 20:27
vote up 2 vote down

Just a thought: try swfobject.hasFlashPlayerVersion(versionStr) instead.

link|flag
good idea, it asks for a minimum flash version and returns a boolean if the minimum is met... – Zaagmans Mar 5 at 20:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.