Hi, I used to hook two functions like this up to buttons to scroll dynamic scroll boxs in as2. Can i do something similar to this in as3 for dynamic txt boxs?

doScrollUp = function(){
onEnterFrame = function(){
body_txt.scroll -= 1;
}
}
doScrollDown = function(){
onEnterFrame = function(){
body_txt.scroll += 1;
}
}



Cheers
Aidan