Está en la página 1de 1

stop(); var dias = new Array("Domingo", "Lunes", "Martes", "Mircoles", "Jueves", "Viernes", "Sbado"); var meses = new Array("enero",

"febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre"); reloj.onEnterFrame = function() { var fecha = new Date(); this.fecha = dias[fecha.getDay()]+", "+fecha.getDate()+" de "+meses[fecha.getMonth()]+" de "+fecha.getFullYear(); this.hora = fecha.getHours(); this.minuto = fecha.getMinutes(); this.segundo = fecha.getSeconds(); if (this.segundo<10) { this.segundo = "0"+this.segundo; } if (this.minuto<10) { this.minuto = "0"+this.minuto; } if (this.hora<10) { this.hora = "0"+this.hora; } };

También podría gustarte