Flash Player を使用してライブ ストリームを表示しています。私がやっている間に、次の関数を使用してストリームを再生および一時停止しようとしましたが、ワンクリックでしか機能しません。再クリックしても変化はありません。あなたが私の問題に気づいたら。私に提案してください。
function testPause(event:MouseEvent) {
nsPlay.pause();
}
function testPlay(event:MouseEvent) {
if(!bolLoaded) {
nsPlay.play(streamValue);
bolLoaded = true;
} else {
nsPlay.resume();
}
}