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

Actionscript 3 Flash Actionscript 3上有类似的教程吗?(使用Flash中的按钮滚动文本),actionscript-3,flash,actionscript,actionscript-2,Actionscript 3,Flash,Actionscript,Actionscript 2,有没有像这样的flash actionscript 3教程,尽可能简单的方法。谢谢 (使用Flash中的按钮滚动文本) scrollbutton.addEventListener(MouseEvent.CLICK,click); function click(e:MouseEvent){ myText.scrollV += 1; // or myText.scrollV -= 1; }

有没有像这样的flash actionscript 3教程,尽可能简单的方法。谢谢

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

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