Scrolling Dynamically Loaded Text/modification od scroller comp

How to make instead of scroller component 2 mc which would scroll the text up and down.I’ve made the Scrolling Dynamically Loaded Text tut but instead of scroller i want 2 mc which would scroll the text.Ive tried using

on (press) {
       onEnterFrame = function() {
            --_root.text.scroll;
       }
}
on (release) {
     delete onEnterFrame;
}

for up btn and

on (press) {
       onEnterFrame = function() {
            ++_root.text.scroll;
       }
}
on (release) {
     delete onEnterFrame;
}

but it doesnt work.

Anyone come on.It’s the third time that no one takes intrest in my problem.Aren’t there any people who are willing to help??