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.
|
|
SWFObject is very reliable. I have used it without trouble for quite a while. |
|||||||||||||
|
|
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:
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:
|
|||||||||
|
|
I know this is an old post, but I've been looking for a while and didn't find anything.
|
|||||||
|
|
You could use closure compiler to generate a small, cross-browser flash detection:
which results in the following "compiled" code:
|
|||||||
|
|
Minimum version I've ever used (doesn't check version, just Flash Plugin):
|
|||||||||
|
|
Perhaps adobe's flash player detection kit could be helpful here? http://www.adobe.com/products/flashplayer/download/detection_kit/ |
|||||
|
|
Carl Yestrau's JavaScript Flash Detection Library, here: http://www.featureblend.com/javascript-flash-detection-library.html ... may be what you're looking for. |
|||
|
|
|
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!" |
||||
|
|
|
Code for one liner
Note that there is an alternative like this: |
||||
|
|
|
To create a Flash object standart-compliant (with JavaScript however), I recommend you take a look at Unobtrusive Flash Objects (UFO) |
|||
|
|
|
View the source at http://whatsmy.browsersize.com (lines 14-120). Here is the abstracted cross browser code on jsbin for flash detection only, works on: FF/IE/Safari/Opera/Chrome. |
|||||||||
|
|
If you just wanted to check whether flash is enabled, this should be enough.
Note: avoid checking enabledPlugin, some mobile browser has tap-to-enable flash plugin, and will trigger false negative. |
||||
|
|
|
Have created a small
|
||||
|
|
