System.QuickTime

From Xojo Documentation


Read-Only Property (As QuickTime )
QuickTimeValue = aSystem.QuickTime

New in 5.0

Supported for all project types and targets.

Provides access to the QuickTime module which returns certain properties of the QuickTime software installed on the user’s computer (Windows and OS X).

Notes

Refer to System.Gestalt for an example that displays the QuickTime version.

Examples

This example determines whether QuickTime is installed.

If System.QuickTime.Installed Then
MsgBox("QuickTime is installed!")
End if