Scrolling problem

Hi guys,

How does one create a scroll buttons where onMouse Press makes the text move up/down and on releasing the mouse button it stops… I am currently using a script that allows me to scroll up/down only one line at a time…but i would like it to scroll continuously until i release the scroll up/down buttons…

please paste the code from your two buttons. Should be easy to develope something from that point.

This is the code i got from the macromedia site…
Also my text is not a mc it is called through variables

[this is for the scroll up button]
on (release) {
text.scroll = text.scroll-1;
}

[this is for the scroll down button]
on (release) {
text.scroll = text.scroll+1;
}

any help would be much appreciated…

Thanks