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.
feedback
|
|
SWFObject is very reliable. I have used it without trouble for quite a while. | |||||
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:
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:
| |||||||||
feedback
|
|
I know this is an old post, but I've been looking for a while and didn't find anything.
| |||||
|
feedback
|
|
Perhaps adobe's flash player detection kit could be helpful here? http://www.adobe.com/products/flashplayer/download/detection_kit/ | |||||
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. | |||
|
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!" | ||||
|
feedback
|
|
You could use closure compiler to generate a small, cross-browser flash detection:
which results in the following "compiled" code:
| |||
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 | |||
|
feedback
|
|
To create a Flash object standart-compliant (with JavaScript however), I recommend you take a look at Unobtrusive Flash Objects (UFO) | |||
|
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 :) | |||
|
feedback
|