In effetti mi sono appena accorta che funziona!
Quindi č il codice che segue che (scroll di testo dentro una text)
che mi fa perdere la formattazione html.

Sai suggerirmi come modificare il codice!


testo.text = _root.corpo;
fscommand("allowscale", false);
su_btn.onPress = function() {
_root.onEnterFrame = function() {
testo.scroll--;
};
};
su_btn.onRelease = function() {
_root.onEnterFrame = undefined;
};
giu_btn.onPress = function() {
_root.onEnterFrame = function() {
testo.scroll++;
};
};
giu_btn.onRelease = function() {
_root.onEnterFrame = undefined;
};
t = new Object();
t.onKeyDown = function() {
if (Key.isDown(Key.UP)) {
testo.scroll--;
} else if (Key.isDown(Key.DOWN)) {
testo.scroll++;
}
};
Key.addListener(t);


GRAZIE