フラッシュ 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?