当mx textarea中的verticalscrollbar停止滚动时,有没有办法启动事件?
答案 0 :(得分:0)
我提出了以下解决方案:
private function init():void{
area.addEventListener(ScrollEvent.SCROLL,onScroll)
timer = new Timer(1000);
timer.addEventListener(TimerEvent.TIMER, startFun);
timer.start();
}
private function onScroll(e:Event):void{
timer.stop()
colored=false
timer.start()
}
private function startFun(e:Event):void{
while(!colored){
area.text="Bye Bye cruel world !"
colored=true;
}
}