Help us improve Softanics
We use analytics cookies to understand which pages and downloads are useful. No ads. Privacy Policy

Enable or Disable Flash Sounds

The component provides global functions to control sound playback in Flash movies.
You can enable or disable all sounds in all loaded movies.


Delphi Example

procedure TMainForm.Mute;  
begin  
  if FlashPlayerControl.GetAudioEnabled then  
    FlashPlayerControl.SetAudioEnabled(False);  
end;

C++Builder Example

void __fastcall TMainForm::Mute()  
{  
  if (Flashplayercontrol::GetAudioEnabled())  
    Flashplayercontrol::SetAudioEnabled(false);  
}