Ver Mensaje Individual
  #4 (permalink)  
Antiguo 13/03/2008, 11:17
Avatar de NUCKLEAR
NUCKLEAR
Moderador radioactivo
 
Fecha de Ingreso: octubre-2005
Ubicación: Cordoba-Argentina
Mensajes: 5.688
Antigüedad: 18 años, 5 meses
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
__________________
Drupal Argentina