Hi all

var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
theVideo.attachVideo(ns);
ns.play("Explode.flv");
trace("movie var passed ok");

ns.onStatus = function(infoObject) {
if (infoObject.code == "NetStream.Play.Stop") {
theVideo._alpha = 0, 1;
link=2;
play();
trace("movie function passed ok");
}
};

I used this actionscript from a tutorial to embed a .flv file to the stage in theVideo object. At run time when i go to the scene containing the video via a button everything appears fine on the screen no problems, when i navigate away from the scene and go back to it, the video does not appear, however if i re-navigate back out and then to that scene it appears again. Basically every other time i navigate to that scene the video dissapears. All the navigation and scripting has no errors. I saw this error posted on another forum without any replies. Hopefully, there's great expert here that can tell me what's wrong.

Oh, BTW, this SWF is linked externally in a Director projector, but I don't think this has anything to do with it other than it doesn't work.

Thanks in advance for any insight.