stop();
video_tmp="videocuadrado.flv"
var conexion:NetConnection = new NetConnection();
conexion.connect(null);
var stream:NetStream = new NetStream(conexion);
mmflv.mi_video.attachVideo(stream);
stream.play(video_tmp);
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";
};
me funciona perfectamente, pero quiero que sea un loop pero no consigo modificar el codigo para ello.
alguien me puede ayudar?
muchas gracias.