Type: String
Returns a string with the build number of the Macromedia Director (shockwave) plug-in, if installed. For example, "6,0,1,21" under IE for Windows or "6.0" under Netscape.
Note: You must call the GetExtPropertiesEx method before checking the value of this property. This property requires either the Professional or Enterprise Edition of BrowserHawk.
Tip: See the extproperties.asp example located in your BrowserHawk directory for detailed information and examples on using this property.
Example:
<% set bhObj = Server.CreateObject("cyScape.browserObj")
bhObj.SetExtProperties "plugin_directorverex"
bhObj.GetExtPropertiesEx %>
<html> Shockwave plug-in version is:
<% = bhObj.Plugin_DirectorVerEx %>
</html>
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 an empty string.
If the user’s JavaScript is disabled this property will not be available.
The format of this property is different for IE on Windows Vs. all other platforms. IE on Windows will return the string in "x,y,z,a" format, whereas all other platforms will be in "x.z" format (i.e. 6,0,1,21 Vs. 6.01).
See Also: