设置音量在我的一台计算机上不起作用

问题描述

| 我正在使用此代码设置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位计算机之外的所有计算机上运行。在那台机器上,正确地找到了音量,但是我听不到任何变化。它将保持全音量。如何更正我的代码以在所有系统上工作?我目前的方式不符合标准吗?     

解决方法

我更新到了最新的Flash Player,问题已解决。