vote up 0 vote down star

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.

flag

13% accept rate
ns.close() seems to help. I'd still like to hear ideas on best practices for this situation though. – sol Sep 7 at 21:51

1 Answer

vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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