Flash AS3 中的扬声器音量

发布于 2024-11-30 14:36:48 字数 144 浏览 1 评论 0原文

有什么办法可以改变扬声器的音量吗?

当我使用麦克风类时,我可以设置 mic.gain 来设置麦克风的增益,同样我可以改变扬声器的音量吗?

我见过,有些网站允许你在Flash中改变扬声器的分贝增益。谁能帮助我理解这一点?

谢谢。

Is there any way by which I can change the volume of the Speaker?

When I use Microphone class, I can set the mic.gain to set the gain in the microphone, likewise can I change the volume of the speaker?

I have seen, some websites allow you to change the decibel gain of the speaker in Flash. Can anyone help me understand this?

Thank You.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

摇划花蜜的午后 2024-12-07 14:36:48

要更改全局声音值:

对于 AS2,更改 _root 的音量:

var volumeChangeSound:Sound = new Sound(_root);
volumeChangeSound.setVolume(0); // goes from 0 to 100

对于 AS3:

import flash.media.SoundMixer;
var transform1:SoundTransform=new SoundTransform();
transform1.volume=0; // goes from 0 to 1
flash.media.SoundMixer.soundTransform=transform1;

as3 中的声音:教程:AS3 基础知识 – 如何使用库声音在 AS3 中 | 8bitrocket

To change global sound values:

For AS2 change the sound volume of the _root:

var volumeChangeSound:Sound = new Sound(_root);
volumeChangeSound.setVolume(0); // goes from 0 to 100

For AS3:

import flash.media.SoundMixer;
var transform1:SoundTransform=new SoundTransform();
transform1.volume=0; // goes from 0 to 1
flash.media.SoundMixer.soundTransform=transform1;

Sounds in as3: Tutorial: AS3 Basics – How to use library sounds in AS3 | 8bitrocket

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文