Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/12/2002, 06:28
Bl@de
Usuario no validado
 
Fecha de Ingreso: noviembre-2002
Ubicación: .........
Mensajes: 147
Antigüedad: 21 años, 5 meses
Puntos: 0
Amigo usa esto y sera mas corto y comodo...

semana = new Array("DOMINGO","LUNES","MARTES","MIERCOLES","JUEV ES","VIERNES","SABADO");
meses = new Array("ENERO","FEBRERO","MARZO","ABRIL","MAYO","JU NIO","JULIO",
"AGOSTO","SEPTIEMBRE","OCTUBRE","NOVIEMBRE","DICIE MBRE");

fecha = new Date();
dia = fecha.getDay();
dias = fecha.getDate();
mes = fecha.getMonth();
anyo = fecha.getFullYear();


y pon esto en un boton ... para que pruebes...

on (release) {
texto = semana[dia] +", "+ dias + " DE " + meses[mes] +" DEL " + anyo;
}


Obviamente create un texto tipo variable que se llame texto ..para que veas como funciona....

espero que te sirva...