Les explico, necesito cargar una pelicula dentro de un archivo flash y en un segundo determinado de la reproducción hacer que se cargue un nuevo swf en un nivel superior, me explico?
Código HTML:
video_tmp="gota1 final1.flv" var conexion:NetConnection = new NetConnection(); conexion.connect(null); var stream:NetStream = new NetStream(conexion); mi_video.attachVideo(stream); stream.play(video_tmp); //aseguramos 10 seg de reproduccion stream.setBufferTime(10); // barra._xscale = 0; onEnterFrame = function () { bu_cargado.text = stream.bufferLength; bu_trans.text = stream.time; bu_total.text = Math.round(stream.bytesTotal/1024)/1000+" mb";}; if (function() == "stream.seek(2)") { trace(loadMovieNum("gota1.swf", 1)) } // aqui es donde falla, intento decirle que si esta en segundo 2, cargue la pelicula, pero no esta bien //status stream.onStatus = function(infoObject:Object) { if (infoObject.code == "NetStream.Play.Stop") { trace("acabo"); } if (infoObject.code == "NetStream.Play.StreamNotFound") { trace("encontro error"); } };