Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/03/2008, 18:59
Avatar de Jowy
Jowy
 
Fecha de Ingreso: febrero-2007
Ubicación: En la red
Mensajes: 232
Antigüedad: 17 años, 2 meses
Puntos: 0
Re: Ejecutar acción cuando acaba de reproducirse un flv

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");

;)