How to disable all Flex applications?

I use multiple video streams in my flex application. In addition, there are sounds of the user interface of the application. Is it possible to disable the entire application or should I disable each of the potential sound sources?

+3
source share
3 answers

You tried

SoundMixer.soundTransform = new SoundTransform(0, 0);
+2
source

I am sure there is no way to do this with ActionScript out of the box. You will need to have some managerial class that tracks all sounds (sound, sound channel, sound signal, etc. And your video streams) in your application and has mute logic.

firefox, swf. Mute Flash - https://addons.mozilla.org/en-US/firefox/addon/5453

+1

Source: https://habr.com/ru/post/1714364/


All Articles