Hi guys!

I have a netstream object playing a video introduction

ns.play(video.flv)

and on another frame of my movie I have a menu, at which point I call

ns.pause()

and then depending on what the user clicks, the netstream opens a new video:

ns.play(video2.flv)

It all works great, except I see a flicker from the previous video I had running. I've tried all sorts of things.

When you click the menu

video.visible = false;
videocontainer.x = 100000;


when the video says its playing

else if(stat.info.code == "NetStream.Play.Start")
{
videocontainer.x = 0;
video.visible = true;
}


I STILL, often, get this flicker.

Any ideas? Anyone seen this before?

Thanks a tonne in advance,

Dave