hi is it possible to install the flash package on turbo delphi because im getting an message saying i am not licenced to install 3rd party components ????
He has used just TShockwaveFlash from Macromedia without any of the tools on sale eg. (f-in-box or Delphi swf - SDK). The plugin is absolutely free from Macromedia.
hi is it possible to install the flash package on turbo delphi because im getting an message saying i am not licenced to install 3rd party components ????
kumitetom 2 years ago
He has used just TShockwaveFlash from Macromedia without any of the tools on sale eg. (f-in-box or Delphi swf - SDK). The plugin is absolutely free from Macromedia.
aldomarsilio 3 years ago
Fabulous !!!
With what tools were developed this?.
They used "Delphi SWF-SDK"?. For example, how to capture the events of each click button?
Regards from Argentina.
hgiacobone1973 3 years ago
Hi hgiacobone1973,
you can import the flash ActiveX Control (e.g. swflash.ocx) in Delphi.
This component includes the "OnFSCommand" Event and you can send commands to Delphi with the Flash "FS-Command"
Flash-Example:
on (press) { fscommand(VarCommand,VarArgs);
}
Delphi Event:
procedure TForm1.Flash1FSCommand(ASender: TObject; const command, args: WideString);
Homeblog 3 years ago