0

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

4

1 回答 1

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;
            }
        }
于 2012-10-10T07:04:13.107 回答