我正在使用此代码设置Flash视频的音量。
public function setVolume(loudness:Number):void
{
// soundControl is a SoundTransform object
this.soundControl.volume = loudness;
// vidStream is a NetStream object
this.vidStream.soundTransform = this.soundControl;
trace("loudness = " + loudness);
}
我在各种操作系统上测试了这段代码。它适用于除我的一台Windows 7 32位机器之外的所有机器。在该机器上,正确地追踪了音量,但我没有听到任何变化。它将保持满量。如何更正我的代码以适用于所有系统?我目前的方式不符合标准吗?
答案 0 :(得分:0)
我更新到最新的Flash播放器,问题解决了。