13/03/2008, 11:17
|
| Moderador radioactivo | | Fecha de Ingreso: octubre-2005 Ubicación: Cordoba-Argentina
Mensajes: 5.688
Antigüedad: 19 años Puntos: 890 | |
Re: Reloj En Mi Web fijate si te sirve:
onEnterFrame = function()
{
time = new Date();
hora = time.getHours();
minutos = time.getMinutes();
segundos = time.getSeconds();
hora_txt.text = hora;
minutos_txt.text = minutos;
if (segundos<10){
cero ="0";
}
else
cero ="";
segundos_txt.text = cero+segundos;
}
Saludos |