reminds me my 3d like engine news section 
Hello:
What is the code to pause this ticker when you mouse-over its screen and scroolbar?
Posted about 1 month ago
hi mediasay,
goto NewsTickerMC and make a new Layer above Ticker Text, in this Layer create a new MovieClip with same size of Ticker Text area and name it TickerPauser, make this invisible just by set the colour alpha to zero, now go to actions layer and just add the following code at the end of script:
TickerPause.onRollOver = function(){
this.useHandCursor = false;
clearInterval(myInterval);
}
TickerPause.onRollOut = function(){
timer();
}
this cause by rollover The Ticker pause and scroll also works and by roll out the Ticker effect run again, hope this help you
Hi!
How can I change the color of the scrollbar??
I really cant find it
Posted about 1 month ago
hi detres,
Goto Flash Library>Flash UI Components>Component Skins>FScrollBar Skins>fsb_thumb_middle>open this and in Skin Elements Layer>face_mc, the Movieclip has also a Blur effect on face, that’s it