3
以前に設定したFlowplayerイベントのバインドを解除するにはどうすればよいですか?クリックでアンバインドと同様にFlowplayer:イベントのバインドを解除するにはどうすればいいですか?
flowplayer('player9999').onCuepoint(55000, function() {
...
});
は:
$('#some').click(function() {
flowplayer('player9999').onCuepoint().unbind(); // something like this.
});
私はflowplayer("player9999").removeCuepoints
みましたが、私は*エラーというエラーが出ます:)flowplayer( "player9999")removeCuepointsは関数ではありません。
私はFlowPlayer 3.2.9を使用しています。
各クリップは 'removeCuePointsを持っている()'メソッド:http://releases.flowplayer.org/apidoc-latest/org/flowplayer/model/ Clip.html#removeCuepoints() – ampersand
エラー:flowplayer( "player9999")。removeCuepointsは関数ではありません –
あなたはどのバージョンのflowplayerを使用していますか? –