IsFlashInstalled Property
Syntax
C#
public static bool IsFlashInstalled;
Description
The IsFlashInstalled
property returns true
if Flash is installed on the system, or false
otherwise.
You can use this property to check if the required version of Flash Player is available before running your application.
Example (C#)
if (!f_in_box__lib.Global.IsFlashInstalled)
{
MessageBox.Show("The application needs Flash 8 or higher\nFlash is not installed");
return;
}
This property is useful for ensuring that your application runs only when Flash Player is present, avoiding runtime errors.