滚动STOPS时触发的事件 - flex

时间:2012-10-09 08:36:48

标签: flex scroll

当mx textarea中的verticalscrollbar停止滚动时,有没有办法启动事件?

1 个答案:

答案 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;
            }
        }