Hola

Llevo semanas intentando que aparezcan los caracteres como los acentos o la ñ cuando ejecuto el scrollbar en flash
pero no hay manera. He estado leyendo por la red que puede ser problema de la codificación del texto. Que lo más probable es que este escrito en formato iso (sino me equivoco formato Americano) y habría que pasarlo al formato utf-8 para que reconociera los caracteres del alfabeto español.

Si alguien sabe algo sobre esto, sinceramente les estaría muy agradecido ya que no se que más hacer.

por si les interesa comprobar el texto, es el siguiente:

txt.setMask(mask)
scrollbar.onMouseDown = function() {
if (this.hitTest(_root._xmouse, _root._ymouse) && txt._height>mask._height) {
this.startDrag(false, scrollbarBG._x, scrollbarBG._y, scrollbarBG._x, scrollbarBG._height-this._height)
txt.onEnterFrame = scrollThumbs;
dragging = true
}
};
scrollbar.onMouseUp = function() {
stopDrag()
dragging = false
delete this.onEnterFrame;
};
function scrollThumbs() {

var funkyVar = -this._parent.scrollbar._y*(((this._height-this._parent.scrollbar._height)/(this._parent.scrollbarBG._height-this._parent.scrollbar._height))-1)
this.Y = (funkyVar-this._y)*.2;
this._y += this.Y;
if(Math.abs(funkyVar-this._y)<1 && !dragging){
delete this.onEnterFrame
}

}


Sinceramente,
Muchas gracias