Plugin_QuickTime Property

 

Type: Integer

 

Returns an integer indicating whether the user has the QuickTime plug-in installed. The returned value will be one of the following:

0: The plug-in is not installed*

1: The plug-in is installed

-1: It is not possible to detect if the plug-in is installed

 

* Note: For Internet Explorer on any Windows platform, a value of 0 indicates that either the QuickTime plug-in is not installed, or a version of QuickTime prior to version 4.1.1 is installed. This is because versions of QuickTime prior to 4.1.1 are not detectable with IE on Windows.

 

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_QuickTime"

bhObj.GetExtPropertiesEx

%>

<html>QuickTime is:

<%

qt = bhObj.Plugin_QuickTime

if qt = -1 then

PropVal = "Not detectable"

elseif qt = 0 then

PropVal = "Not installed"

else

Propval = "Installed"

end if

response.write PropVal

%>

</html>

 

Special notes for this property:

 

See Also:

Plugin_QuickTimeVerEx Property

Plugin_Flip4Mac Property

GetExtPropertiesEx Method

SetExtProperties Method