473,513 Members | 2,307 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How can I detect the version of Plugin in Internet Explorer?

Hi all.

How can I detect the version of Flash-Plugin installed in Internet
Explorer?
In Netscape i can do this with following java script
navigator.plugins[pluginname].description
But it doesn't works in IE?
Can anyone help me?

Thanx in advance,
Yurij
Jul 23 '05 #1
2 10007
> How can I detect the version of Flash-Plugin installed in Internet
Explorer?


Plugins are different for ie... I would embed some vbscript in your
javascript, and use object detection with vb. Here is a snip from a
page I did awhile ago, that will not work as is, but will give you the
idea...

// IE Plugin detection (using VBSCRIPT)
if( (wm.name=="IE") && (wm.version>=4.0) && (wm.platform=="Win32") )
{
document.writeln('<SCRIPT LANGUAGE="VBSCRIPT"
TYPE="TEXT/VBSCRIPT">')
document.writeln(' Function DetectObject(activeXname)')
document.writeln(' on error resume next')
document.writeln(' FoundStatus = False')
document.writeln(' FoundStatus =
IsObject(CreateObject(activeXname))')
document.writeln(' If (err) then')
document.writeln(' FoundStatus = False')
document.writeln(' End If')
document.writeln(' DetectObject = FoundStatus')
document.writeln(' End Function')
document.writeln(' PluginStatus =
DetectObject("ShockwaveFlash.ShockwaveFlash.5")')
document.writeln(' If PluginStatus = True Then')
document.writeln(' wm.flash = 5')
document.writeln(' Else')
document.writeln(' PluginStatus =
DetectObject("ShockwaveFlash.ShockwaveFlash.4") ')
document.writeln(' If PluginStatus = True Then')
document.writeln(' wm.flash = 4')
document.writeln(' Else')
document.writeln(' PluginStatus =
DetectObject("ShockwaveFlash.ShockwaveFlash.3")')
document.writeln(' If PluginStatus = True Then')
document.writeln(' wm.flash = 3')
document.writeln(' End If ')
document.writeln(' End If')
document.writeln(' End If')
document.writeln(' PluginStatus =
DetectObject("QuickTimeCheckObject.QuickTimeCheck" )')
document.writeln(' If PluginStatus = True Then')
document.writeln(' wm.quicktime = 1')
document.writeln(' End If ')
document.writeln(' PluginStatus = DetectObject("RealPlayer")')
document.writeln(' If PluginStatus = True Then')
document.writeln(' wm.realplayer = 1')
document.writeln(' End If ')
document.writeln('</SCRIPT>')
}

The first part

if( (wm.name=="IE") && (wm.version>=4.0) && (wm.platform=="Win32") )

uses already detected settings to make sure that the browser is IE,
the version is greater than 4, and the OS is a windows platform. If
it is, it does the inline vbscript (I already described) to try and
create and test the object.

This code also tests for quicktime and realplayer.

I hope this code helps... keep in mind though, it is 3 or so years out
of date. It only tests for up to version 5 of Flash. But if you know
javascript it should be easy to modify it to get it to test for newer
versions. Also, you will have to change all of the "wm."
references... (this script used a custom-made object -- wm -- and
defined a bunch of browser settings which I set into a cookie...)

Hope it helps!

Holden
PS: As for IE on Macs, I don't think there is anything you can do.
Luckily, IE on Windows covers over 90% of the computers out there...
Jul 23 '05 #2
Yurij Nykon wrote:
Hi all.

How can I detect the version of Flash-Plugin installed in Internet
Explorer?
In Netscape i can do this with following java script
navigator.plugins[pluginname].description
But it doesn't works in IE?
Can anyone help me?

Thanx in advance,
Yurij


<url:
http://www.google.com/search?q=inter...t+detect+flash
/>

Second link produced is:

<url:
http://www.macromedia.com/support/fl..._detection.htm
/>

which describes how to detect Flash using Flash itself. If that doesn't
suit you, there is a link to:

<url:
http://www.macromedia.com/support/fl..._detection.htm
/>

which contains the following paragraph:

"Note: The Macromedia Flash deployment kit is a complete Flash Player
detection system that meets the needs of most developers. If you have a
specific detection requirements, the methods discussed in the rest of
this TechNote may prove useful. Otherwise, download and install the
deployment kit."

There are links in that paragraph to the Flash deployment kit.

--
| Grant Wagner <gw*****@agricoreunited.com>

* Client-side Javascript and Netscape 4 DOM Reference available at:
*
http://devedge.netscape.com/library/...ce/frames.html

* Internet Explorer DOM Reference available at:
*
http://msdn.microsoft.com/workshop/a...ence_entry.asp

* Netscape 6/7 DOM Reference available at:
* http://www.mozilla.org/docs/dom/domref/
* Tips for upgrading JavaScript for Netscape 7 / Mozilla
* http://www.mozilla.org/docs/web-deve...upgrade_2.html
Jul 23 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2304
by: Jan Vinten | last post by:
Hello, I'm looking for a javascript, that can detect which java VM is installed and what the current version is. Can any of you give me some details? Best regards, Jan Denmark
4
9770
by: The Plankmeister | last post by:
Hi. I'm redesigning my site using CSS and have just decided to start again from scratch as I was using too much javascript to do positioning and stuff. My question is: What version of CSS is it...
0
1916
by: | last post by:
Hi, I want to write a small plugin/script/component (in .NET preferably) for internet explorer that can read information on a web page. More specificly: i want to read the html body of a...
6
486
by: D H | last post by:
Are there any plans by Microsoft or anyone else to ever create a browser plugin that can run .NET apps? One that can work in any browser like the Flash or Acrobat plugins? I know about smart...
5
3440
by: Andy | last post by:
Hi, I'm trying to use javascript to detect the version of internet explorer before running an active x control. I'm after the full version number (eg not just IE6 but 6.0.2800.1106). Is there...
1
2068
by: almir | last post by:
Hi, is there a way to develop a plugin for Internet Explorer with .net, is there a source in internet describing this? I need to develop a small plugin for intranet which starts local exe...
4
2076
by: henry | last post by:
Hi all, I'm building a website which provides contents that only work for some browser types and versions. I know I can get most of the client browser information using HttpBrowserCapabilities...
0
4493
by: gaurav2325 | last post by:
Hi, I would like to create a plugin for internet explorer to run my document. My document contains specific type of data, so that, I want whenever the user open that document (that is word...
4
11454
by: aotemp | last post by:
Does anyone know how to detect the version of Java installed? My website has an application that requires java 1.5+ to be installed, basically if the user doesn;t already have it installed I...
0
7265
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7171
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7545
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7539
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5692
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5095
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3228
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
807
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
461
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.