Ver Mensaje Individual
  #1 (permalink)  
Antiguo 31/08/2009, 12:51
kaquna
 
Fecha de Ingreso: agosto-2007
Mensajes: 130
Antigüedad: 17 años, 8 meses
Puntos: 0
array de textos con for

hola a tod@s de nuevo

alguien sabe por que el primer codigo funciona y me saca los acentos y el segundo no?

milchisimas gracias

Código:
txtoES.embedFonts = true;
txtoFR.embedFonts = true;
txtoEN.embedFonts = true;

txtoES.text = arraytexto[0];	
txtoFR.text = arraytexto[1];
txtoEN.text = arraytexto[2];
Código:
var txtoIDIOMA:Array = [txtoES,txtoFR,txtoEN];

for (i=0;i<txtoIDIOMA.length;i++) {
	txtoIDIOMA[i].embedFonts = true;
	txtoIDIOMA[i].text = arraytexto[i];
}