我正在使用Flash播放器观看直播。虽然我正在这样做,我尝试使用以下功能播放和暂停流,但它只适用于一次点击。如果我重新点击它不会显示任何变化。如果你意识到我的问题。请建议我。
function testPause(event:MouseEvent) {
nsPlay.pause();
}
function testPlay(event:MouseEvent) {
if(!bolLoaded) {
nsPlay.play(streamValue);
bolLoaded = true;
} else {
nsPlay.resume();
}
}
答案 0 :(得分:0)
在暂停状态下使布尔变量值为FALSE。
bolLoaded = false;