0

フラッシュ FLV プレーヤー コンポーネントを使用しています。ビデオは自動再生され、最初はミュートする必要があります。その後、視聴者はサウンドのオンとオフを切り替えることができます。

videoPlayer.volume = 0;
var isMute:Boolean = true;

videoPlayer.addEventListener(MouseEvent.CLICK, muteClickHandler);
function muteClickHandler(e:MouseEvent) {
    if(isMute) {
        videoPlayer.volume=1;
        isMute = false;
    } else if (!isMute) {
        videoPlayer.volume=0;
        isMute = true;
    }
}

But the icon to show sound on/off isn't showing up correctly. For example, when the volume=0 in the very beginning, the icon show that the sound is on. Also, even if the volume is 0, when you click the pause button, the icon changes to sound on.

Is there anything I can do to fix this issue?

4

1 に答える 1

2

ミュート ボタン アイコンを変更するには、独自のコードで処理する必要があります。

そのためのAPIはないと思います。

于 2012-06-07T05:08:50.607 に答える