MakeParentTransparent

Syntax

property MakeParentTransparent: WordBool;

Description

Gets or sets whether the parent form of TTransparentFlashPlayerControl is made transparent.
This property allows the creation of applications with non-rectangular, translucent forms.

To use it, place TTransparentFlashPlayerControl on a form and set MakeParentTransparent to True.

Form transparency is supported only on Windows 2000 or later with 16/32 bpp display modes.
To check if transparency is available, use the global function IsFormTransparentAvailable:

Delphi Example

if Not IsFormTransparentAvailable then
begin
  ShowMessage('Translucency based on Flash is not available');
  Application.Terminate;
end;