Does anyone have an example of script that can work reliably well across IE/Firefox to detect if the browser is capable of displaying embedded flash content. I say reliably because I know its not possible 100% of the time.

link|improve this question

I see you've already accepted joeri's answer, but you really ought to seriously consider swfObject. It's a lot more robust and less bloaty. – matt lohkamp Oct 2 '08 at 8:32
feedback

10 Answers

up vote 35 down vote accepted

SWFObject is very reliable. I have used it without trouble for quite a while.

link|improve this answer
Same here, SWFObject works great for me as well (used to be called FlashObject, but Adobe threw a hissy fit) – davr Oct 1 '08 at 20:00
SWFObject is the way to go! – Sugendran Oct 1 '08 at 22:44
feedback

I agree with Max Stewart. SWFObject is the way to go. I'd like to supplement his answer with a code example. This ought to to get you started:

if(swfobject.hasFlashPlayerVersion("9.0.115"))
{
    alert("You have the minimum required flash version (or newer)");
}
else
{
    alert("You do not have the minimum required flash version");
}

Replace "9.0.115" with whatever minimum flash version you need. I chose 9.0.115 as an example because that's the version that added h.264 support.

If the visitor does not have flash, it will report a flash version of "0.0.0", so if you just want to know if they have flash at all, use:

if(swfobject.hasFlashPlayerVersion("1"))
{
    alert("You have flash!");
}
else
{
    alert("You do not flash :-(");
}
link|improve this answer
3  
great. I was struggling to find a really simple example of simply detecting any flash installed. Thanks. – Brian Scott Mar 13 '11 at 10:58
1  
Thanks for this example! Needed to run some other javascript if the user was without flash and was already using swfobject for the embedding anyway. :) – kontur Mar 9 at 12:15
feedback

I know this is an old post, but I've been looking for a while and didn't find anything.
I've implemented the JavaScript Flash Detection Library. It works very well and it is documented for quick use. It literally took me 2 minutes. Here is the code I wrote in the header:

<script src="Scripts/flash_detect.js"></script>
<script type="text/javascript"> 
    if(!FlashDetect.installed){
        alert("Flash is required to enjoy this site.");         
    }else{
        alert("Flash is insalled on your Web browser.");
    }
</script>
link|improve this answer
thanks, dude, worked out! – Max Felker Jun 14 '11 at 20:18
it now fails on Chrome and Firefox 6+! – balint Oct 10 '11 at 22:41
feedback

Perhaps adobe's flash player detection kit could be helpful here?

http://www.adobe.com/products/flashplayer/download/detection_kit/

link|improve this answer
1  
Would just like to point out: SWFObject is the successor to Adobe's detection kit linked here. – Andrew Dec 30 '10 at 19:34
feedback

Carl Yestrau's JavaScript Flash Detection Library, here:

http://www.featureblend.com/javascript-flash-detection-library.html

... may be what you're looking for.

link|improve this answer
feedback

Detecting and embedding Flash within a web document is a surprisingly difficult task.

I was very disappointed with the quality and non-standards compliant markup generated from both SWFObject and Adobe's solutions. Additionally, my testing found Adobe's auto updater to be inconsistent and unreliable.

The JavaScript Flash Detection Library (Flash Detect) and JavaScript Flash HTML Generator Library (Flash TML) are a legible, maintainable and standards compliant markup solution.

-"Luke read the source!"

link|improve this answer
feedback

You could use closure compiler to generate a small, cross-browser flash detection:

// ==ClosureCompiler==
// @compilation_level ADVANCED_OPTIMIZATIONS
// @output_file_name default.js
// @formatting pretty_print
// @use_closure_library true
// ==/ClosureCompiler==

// ADD YOUR CODE HERE
goog.require('goog.userAgent.flash');
if (goog.userAgent.flash.HAS_FLASH) {
    alert('flash version: '+goog.userAgent.flash.VERSION);
}else{
    alert('no flash found');
}

which results in the following "compiled" code:

var a = !1,
    b = "";

function c(d) {
    d = d.match(/[\d]+/g);
    d.length = 3;
    return d.join(".")
}
if (navigator.plugins && navigator.plugins.length) {
    var e = navigator.plugins["Shockwave Flash"];
    e && (a = !0, e.description && (b = c(e.description)));
    navigator.plugins["Shockwave Flash 2.0"] && (a = !0, b = "2.0.0.11")
} else {
    if (navigator.mimeTypes && navigator.mimeTypes.length) {
        var f = navigator.mimeTypes["application/x-shockwave-flash"];
        (a = f && f.enabledPlugin) && (b = c(f.enabledPlugin.description))
    } else {
        try {
            var g = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7"),
                a = !0,
                b = c(g.GetVariable("$version"))
        } catch (h) {
            try {
                g = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6"), a = !0, b = "6.0.21"
            } catch (i) {
                try {
                    g = new ActiveXObject("ShockwaveFlash.ShockwaveFlash"), a = !0, b = c(g.GetVariable("$version"))
                } catch (j) {}
            }
        }
    }
}
var k = b;
a ? alert("flash version: " + k) : alert("no flash found");
link|improve this answer
this solution is the cleanest in our opinion. we were looking for a swfobject / library free method of detecting if flash is installed. this does the trick. thanks! – anonymous-one May 10 at 6:53
feedback

I've used the following at http://whatsmy.browsersize.com and it works fine across FF/IE/Safari/Opera/Chrome:

http://developer.apple.com/internet/webcontent/examples/detectplugins_source.html

link|improve this answer
feedback

To create a Flash object standart-compliant (with JavaScript however), I recommend you take a look at

Unobtrusive Flash Objects (UFO)

http://www.bobbyvandersluis.com/ufo/index.html

link|improve this answer
feedback

well... If you want to detect this, you need javascript, right? And if neither flash or js is enabled/available... you are screwed :D Anyhow, i think the best thing is to use swfObject or something similar :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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