come posso cambiare il testo in flash con xml ?

ho uno scrool e volevo modificarlo senza modificare lo script...su flash


es.

testo.text = "qui va il testo che vorrei cambiare";
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);


se avete script a riguardo fatemi sapere.
grazie.