Interupt playing of current video and going to other one

If I have a playing video and I click on the next button for example, what do I need to do exactly?

(this question also applies when currently playing video comes to an end and the next video comes in order)

if I say:

netStream.close();

and then:

netConnection = new NetConnection();
netConnection.connect(null);
netStream = new NetStream(netConnection);

sndTransform = new SoundTransform();

video = new Video();
addChild(video);
video.attachNetStream(netStream);
netStream.play("myVideo.flv");

is that good approach and/or do I need to do something else?

I dont quite understand this video processes :stuck_out_tongue: