Disable flash audio in object parameters?

Is there a way to mute the sound in a flash file using object parameters?

+3
source share
2 answers

No, there is no abstract way to mute the sound using the built-in parameters (i.e. this is only possible if the content knows how to mute your own sounds based on what you are going through).

But using a parent container that kills the sound (or more correctly sets the volume to 0), and loading the content should be a viable workaround. Just keep in mind that there are some cases where content created in certain ways may not work correctly if it is loaded in another SWF.

0
source

Can you give more details?

Are you trying to access swf through flashvars? object parameters are just variables, you will need to access the method to mute the sound. If you have access to the script, it’s quite difficult, if not the container, it seems to be the solution, in the container you can create an instance of SoundMixer that controls the global sound in Flash and calls the stopAll () method.

0
source

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


All Articles