Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have one video object and 3 thumbnails which, when clicked, will play different video files. What is the best practice for this situation?

Currently I have one net connection, one net stream, and one video object. When a thumbnail is clicked, I just say ns.pause(), then ns.play(video2.flv). This sort of works, except if I play video1.flv, then video2.flv, then play video1.flv again, it gets all scrambled - the video plays but is chopped up with ugly lines across it.

share|improve this question
ns.close() seems to help. I'd still like to hear ideas on best practices for this situation though. – sol Sep 7 '09 at 21:51

1 Answer

up vote 1 down vote accepted

calling ns.close() before ns.play() should reset the stream for another use.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.