Buonasera community.
vi pongo un quesito che non mi sta facendo dormire:
sto utilizzando uno script di questo tipo in un file .fla per del testo html scorrevole:

getURL("FSCommand:allowscale", false);
su_btn.onRollOver = function() {
_root.onEnterFrame = function() {
--testo.scroll;
};
};
su_btn.onRollOut = function() {
_root.onEnterFrame = undefined;
};
giu_btn.onRollOver = function() {
_root.onEnterFrame = function() {
++testo.scroll;
};
};
giu_btn.onRollOut = function() {
_root.onEnterFrame = undefined;
};
t = new Object();
t.onKeyDown = function() {
if (Key.isDown(38)) {
--testo.scroll;
} else if (Key.isDown(40)) {
++testo.scroll;
}
// end else if
};
Key.addListener(t);

Secondo voi c'è qualche modo per rallentare lo scorrimento del testo?
grazie a chiunque mi dedicherà un minuto del suo tempo-
Paolo