How to make a good flv reloading?

Hello!

I want to make a function that changes the flv that is on the videowindow.
Heres my failed attempt:

function playMovieFunction(videoname:String):void {
stream.close()
conn = new NetConnection();
conn.connect(null);
stream = new NetStream(conn);
stream.play(videoname);
}

The sound reset and play, but the video image pauses with it. Someone know a good solution for this? Thanks!