a mi me funciono sino vienes
Código:
var conexion:NetConnection = new NetConnection();
conexion.connect(null);
var stream:NetStream = new NetStream(conexion);
mi_video.attachVideo(stream);
stream.play("videouno.flv");
stream.setBufferTime(10);
stream.onStatus = function(info) {
if (info.code == "NetStream.Play.Stop") {
stream.play("videodos.flv");
stream.onStatus = function(info) {
if (info.code == "NetStream.Play.Stop") {
stream.play("videouno.flv");
stream.seek(0);
stream.pause();
}
};
}
};