Flash Actionscript 3 上有这样的教程吗? (在 Flash 中使用按钮滚动文本)

Is there a tutorial like this on Flash Actionscript 3? (Scrolling Text Using Buttons In Flash)

有没有像这样的flash actionscript 3教程,尽量简单。谢谢!

(在 Flash 中使用按钮滚动文本)

https://www.youtube.com/watch?v=zK-uemUM0JY

scrollbutton.addEventListener(MouseEvent.CLICK,click);
function click(e:MouseEvent){
    myText.scrollV += 1;
    // or myText.scrollV -= 1;
}