Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/01/2008, 10:19
Avatar de ganCT
ganCT
 
Fecha de Ingreso: enero-2008
Ubicación: Vigo
Mensajes: 78
Antigüedad: 16 años, 3 meses
Puntos: 0
Re: ayuda Texto dinamico vertical

Y si simplemente rotas el texto??????

Manualmente, con la herramienta de transformacion libre....
Funciona

this.onEnterFrame=function(){
time = new Date();
hora = time.getHours();
minutos = time.getMinutes();
segundos = time.getSeconds();
hora_txt.text = hora;
minutos_txt.text = minutos;
segundos_txt.text = segundos;
}