Repeat text scroll by holding down button?

Hello: I’m using this code to scroll text when you press the arrow buttons.

on(press){
statement_txt.scroll++; // or scroll–;
}

How can you code it so a scrollable text box keeps scrolling when you hold down on the button?

Thanks.