el tema es que la muestra toda seguida, es decir una informacion tras otra en un solo reglon y me gustaria que aparezca una debajo de otra y poder ponerle el color que yo desee al font.
aca les dejo el codigo:
stop();
// -- estilos
miFormato = new TextFormat();
miFormato.font = "verdana";
miFormato.size = 10;
// -- crea un campo de texto dinámico
this.createTextField("datos", 1, 250, 250, "", "");
datos.autoSize = true;
datos.html = true;
// Calcula el tiempo estimado de descarga, basandose en el tiempo transcurrido
// desde el inicio de la reproducción de la película
tiempo_estimado = getTimer()+1000;
bytes_descargados_inicio = _root.getBytesLoaded();
// -- bucle
this.onEnterFrame = function() {
porcentaje = Math.round(_root.getBytesLoaded()*100/_root.getBytesTotal())+"%";
tiempo_actual = getTimer();
//
if (tiempo_actual>=tiempo_estimado) {
bytes_descargados_proceso = _root.getBytesLoaded();
velocidad_transferencia = (bytes_descargados_proceso-bytes_descargados_inicio);
tiempo_restante = Math.round((_root.getBytesTotal()-_root.getBytesLoaded())/velocidad_transferencia);
// -- tiempo restante (puede variar durante el proceso según la velocidad de transferencia)
for (segundos_restantes=tiempo_restante; segundos_restantes>=60; segundos_restantes -= 60) {
i++;
}
for (minutos_restantes=Math.round(tiempo_restante/60); minutos_restantes>=60; minutos_restantes -= 60) {
i--;
}
// -- construye los datos de la descarga
horas_restantes = Math.round(tiempo_restante/60);
segundos_restantes = (segundos_restantes<10) ? "0"+segundos_restantes : segundos_restantes;
minutos_restantes = (minutos_restantes<10) ? "0"+minutos_restantes : minutos_restantes;
horas_restantes = (horas_restantes<10) ? "0"+horas_restantes : horas_restantes;
tiempo_restante = horas_restantes+":"+minutos_restantes+":"+segundos_restantes;
tipo = (velocidad_transferencia<1000) ? " bytes" : " kb";
velocidad_transferencia = (velocidad_transferencia<1000) ? velocidad_transferencia : Math.round(velocidad_transferencia/1000);
tiempo_estimado = getTimer()+1000;
bytes_descargados_inicio = _root.getBytesLoaded();
}
// -- muestra los datos de la descarga
datos.htmlText = "porcentaje: "+porcentaje+"<br>descargado: "+Math.round(_root.getBytesLoaded()/1000)+"kb<br>total Kb: "+Math.round(_root.getBytesTotal()/1000)+"kb<br>velocidad de transferencia: "+velocidad_transferencia+tipo+"/segundo<br>tiempo restante aprox.: "+tiempo_restante;
datos.setTextFormat(miFormato);
// -- finaliza la descarga borra evento enterFrame y textfield
if (_root.getBytesLoaded() == _root.getBytesTotal()) {
delete this.onEnterFrame;
datos.removeTextField();
nextFrame();
}
};


 
   