Ver Mensaje Individual
  #6 (permalink)  
Antiguo 23/04/2007, 11:11
Rizzo
 
Fecha de Ingreso: septiembre-2006
Mensajes: 1.193
Antigüedad: 17 años, 7 meses
Puntos: 30
Re: reproducir flv, cuando acabe otro flv

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();
			}
		};
	}
};