Ver Mensaje Individual
  #6 (permalink)  
Antiguo 02/04/2007, 04:23
Avatar de SAPINTO
SAPINTO
 
Fecha de Ingreso: junio-2005
Ubicación: just another fucked up pl
Mensajes: 777
Antigüedad: 18 años, 10 meses
Puntos: 0
Re: urgente: cuando acaba un flv????

trata con esto:
Código:
var conexion:NetConnection = new NetConnection();
conexion.connect( null );
// esto faltaba, decirle a la variable que es un nuevo netstream y asignarsela a "conexion"
var stream:NetStream = new NetStream(conexion);
v_publi.attachVideo(stream);
// reproducimos el stream
stream.play(urlPubli);
y para lo otro deberia ser:
Código:
conexion.onStatus = function(info) {
	if(info.code == "NetStream.Play.Stop") {
		gotoAndPlay("el_frame");
	}
}
__________________
if(user=="female" && user>="hot"){
user.gotoAndStop("sapinto's bed");
}
mi portafolio

Última edición por SAPINTO; 02/04/2007 a las 04:33