Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/03/2008, 09:39
Avatar de oppjpp
oppjpp
 
Fecha de Ingreso: octubre-2007
Mensajes: 304
Antigüedad: 16 años, 6 meses
Puntos: 2
Re: Agregar fecha y hora

Hola amigo, la forma mas facil es poner tres textos dinamicos donde quieras que aparezca la fecha, a cada uno le pones los siguientes nombres de instancias:

hora_txt
minutos_txt
segundos_txt

En otra capa pones el siguiente código:

Cita:
time = new Date();
onEnterFrame()
{
hora = time.getHours();
minutos = time.getMinutes();
segundos = time.getSeconds();
dias=time.getDay();
mes=time.getMonth();
año=time.getFullYear();
hora_txt.text = hora;
minutos_txt.text = minutos;
segundos_txt.text = segundos;
dias_txt.text= dias;
mes_txt.text=mes;
año_txt.text=año;
}
Un saludo