Hola. En el 1º frame del _root pone lo siguiente
dias=new Array("Domingo","Lunes","Martes","Miercoles","Juev es","Viernes","Sabado");
meses=new Array("Enero","Febrero","Marzo","Abril","Mayo","Ju nio","Julio","Agosto","Setiembre","Octubre","Novie mbre","Diciembre");
Luego crea un movieclip y dentro dibuja un cuadro de texto dinámico, con un nombre, por ejemplo txtFecha. Seleccioná el movieclip y agregale el siguiente código:
Código:
onClipEvent(enterFrame){
function fecha(){
fecha_actual = new Date();
dia = fecha_actual.getDay();
mes = fecha_actual.getMonth();
hora = fecha_actual.getHours();
if(hora<10){
hora = "0"+hora;
}
minutos = fecha_actual.getMinutes();
if(minutos<10){
minutos = "0"+minutos;
}
segundos =fecha_actual.getSeconds();
if(segundos<10){
segundos = "0"+segundos;
}
return (_parent.dias[dia]+", "+fecha_actual.getDate()+" de "+_parent.meses[mes]+" del "+ fecha_actual.getFullYear()+" Hora "+ hora+":"+minutos+":"+segundos);
}
this.txtFecha.text ="Hoy es "+fecha()+" ";
}
Y con eso se actualiza constantemente la hora...
Espero que te sirva.
Saludos. Lucas