1_ Tengo un frame donde va el texto dinamico que llamo myText
2_ Un frame con la sigueinte función
Código:
3_ Un frame con la siguiente accionfunction addItems() { Title = myData.Title; myText.multiline = true; myText.wordWrap = true; myText.type = "dynamic"; myText.background = false; myText.backgroundColor = ""; myText.border = false; myText.html = true; myText.htmlText = myData.myText; ScrollBar.setScrollTarget(myText); formStyleFormat = new FStyleFormat; formStyleFormat.scrollTrack = "0x6F737E"; formStyleFormat.highlight = "0xCCCCCC"; formStyleFormat.highlight3D = "0x0000FF"; formStyleFormat.arrow = "0x0000FF"; formStyleFormat.face = "0x333333"; formStyleFormat.background = "0x000000"; formStyleFormat.shadow = "0x222222"; formStyleFormat.darkshadow = "0x777777"; formStyleFormat.addListener(ScrollBar); formStyleFormat.applyChanges(); textFormat = new TextFormat(); textFormat.color = "0xffffff"; textFormat.bullet = false; textFormat.underline = false; textFormat.bullet = false; textFormat.size = 12; textFormat.font = "arial"; myText.setTextFormat(textFormat); }
Código:
Si alguien sabe como hacer para que aparte de las etiquetas html memyData = new LoadVars(); myData.onLoad = addItems; myData.load("archivo.txt");
reconozca los acentos y las Ñ voy a estar muy agradecido.