Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/03/2005, 16:28
Avatar de bernethe
bernethe
 
Fecha de Ingreso: abril-2004
Ubicación: San José, Costa Rica
Mensajes: 384
Antigüedad: 20 años
Puntos: 2
Debes hacer 3 campos de texto Dinamicos EN EL SIGUIENTE ORDEN, y con los siguientes nombres de instancia:

hora_txt
min_txt
seg_txt

Luego pones este codigo en el frame:

Código:
this.onEnterFrame = function() {
	var fecha:Date = new Date();
	hora_txt.text = fecha.getHours();
	min_txt.text = fecha.getMinutes();
	seg_txt.text = fecha.getSeconds();
};
y por ultimo me dices si te sirvió...
__________________
..::BERNETHE::..