Hi all,
           I have to create a datagrid  with one row and row will scroll 
automatically and display data one by one,  that is like a ticker. now i what i 
did is created a timer in which i am changing the datatprovider after certain 
time interval :

private function timerEvent(event:TimerEvent):void{
            if(dataCount < dataProvider.length){
                dG.dataProvider = dataProvider[dataCount++];
            }else{
                dataCount = 0;
            }
            dGinvalidateDisplayList();
 }

it's working fine, but i need to smooth scrolling. is there anyway I can scroll 
the datagrid automatically. Is there any other way I can do this ? 




 
____________________________________________________________________________________
Yahoo! Music Unlimited
Access over 1 million songs.
http://music.yahoo.com/unlimited

Reply via email to