:puzzle:In Flash MX 2004 Pro. I have embedded the video in which needs to load several external FLV files. These are the problems.
-
How do I stop the video and it removed (with the shutdown sound)
-
How do I upload another FLV file in the same embedded video (I have separate buttons for each FLV file) and also remove previous FLV file
This is the code that I use:
my_nc = new NetConnection();
my_nc.connect(null);
my_ns = new NetStream(my_nc);
my_video.attachVideo(my_ns);
my_ns.play(“my_movie.flv”);
my_ns.onStatus = function(info) {
for (var i in info){
trace(i+" = "+info*);
}
if(info.code==“NetStream.Buffer.Empty” && waitingForEmpty==true){
//display a play button because the video is done
replay_btn._visible=true;
}
if(info.code==“NetStream.Play.Stop”){
waitingForEmpty=true;
}
};
waitingForEmpty=false;
replay_btn._visible=false;
replay_btn.onPress=function(){
replay_btn._visible=false;
waitingForEmpty=false;
my_ns.play(“my_movie.flv”);
}
Thanks