Hi,
I’m in a bit of a headache.
I have this Main swf that is supposed (via buttons) load external swf’s. These external swf’s play single videos with code that follows ie:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
ns.play(“Clip3.flv”);
var myVideo:Video = new Video(1280,720);
myVideo.attachNetStream(ns);
addChild(myVideo);
When this video clip has ended I want the main swf to be loaded again. Either by going by time or by buffering. I’ve been googling around for a couple of hours, trying to find a good solution but I cant seem to solve this problem. Please can someone help me?
Kindest Regards!