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);  
}