Type: Integer
Returns an integer indicating whether the RealPlayer installed and, if so, what type of player it is. . The returned value will be one of the following:
0: The plug-in is not installed
1: The original RealPlayer is installed
2: The RealVideo player is installed
3: The RealPlayer G2 plug-in is installed
4-6: Not used
7: RealPlayer 7 installed
8: RealPlayer 8 installed
9: RealOne Player installed
10: RealPlayer 10 or later installed
-1: It is not possible to detect if the plug-in is installed
Note: Use of this property requires the Professional or Enterprise Edition of BrowserHawk.
Special notes for this property:
Not all browsers are capable of having their plug-ins detected. If this is the case the return value will be -1.
In some cases if the user installs the RealOne player for the first time the browser may need to be restarted before it can be detected.
C# Example:
<%
ExtendedOptions options = new ExtendedOptions();
options.AddProperties("Plugin_RealPlayer");
ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);
%>
<html>
Plugin_RealPlayer: <% Response.Write(extBrow.Plugin_RealPlayer); %>
</html>
See Also: