|
Quick links:
F-IN-BOX Delphi Edition Help >> TFlashPlayerControl / TTransparentFlashPlayerControl >> Globals IsFormTransparentAvailable
Syntax
[ Delphi ]
function IsFormTransparentAvailable: Boolean; [ Builder C++ ]
bool __fastcall IsFormTransparentAvailable(void); Description
Using FlashPlayerControl you can create applications based on transparent flash movies. You can create applications with translucency non-rectangle forms (windows). Use Flash to make applications with modern user interface, make a business logic using Delphi or Builder. Use TTransparentFlashPlayerControl Component to work with transparency:
Please note that the transparency is supported only under Win2k (or higher), 16 / 32 bpp display mode. Use global function IsFormTransparentAvailable to check it: [ Delphi ]
if Not IsFormTransparentAvailable then
begin
ShowMessage('Translucency based on Flash is not available');
Application.Terminate;
end;
[ Builder C++ ]
if (!Flashplayercontrol::IsFormTransparentAvailable())
{
ShowMessage("Translucency based on Flash is not available");
Application->Terminate();
}
Copyright © 2004 - 2008 Softanics. All rights reserved. Delphi is a trademark of Borland Software Corporation. Macromedia and Shockwave Flash are trademarks of Macromedia, Inc. |