Yo mismo me respondo (por si a alguien le surge la duda:
Código:
stop();
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
ns.onStatus = function(info){
if(info.code =="NetStream.Play.Stop"){
gotoAndPlay('nextSection'); //Aqui las acciones a realizar
}
}
the_video.attachVideo(ns);
ns.setBufferTime(5);
ns.play("video.flv");
;)