0

一緒に動作するaudioPlayerとスライダーを作成しました。音楽の再生中にスライダーが移動します。します。スライダーで前後に巻き戻したいです。動作しません。ストリーミングコンポーネントだからだと思います。しかし、それはすでにバッファリングされたコンテンツなので、少なくとも巻き戻すことができるのではないでしょうか?曲の長さを配列に入れたとしましょう。曲のどこにいるのかをコントロールする機能は作れないのでしょうか?

まあそれは動作しません。助言がありますか?これはcreateSoundで完璧に機能します。

slider.addEventListener('touchstart', function(e) {
audioPlayer.pause(); 
});

slider.addEventListener('touchend', function(e) {
audioPlayer.progress = slider.value;
audioPlayer.play(); 
});
4

1 に答える 1

0

これが私が問題を解決した方法です:

http://developer.appcelerator.com/question/143856/custom-forward-and-rewind-with-slider-on-createvideoplayer#comment-144979

于 2012-10-24T12:08:16.620 に答える