Nice Going, this is one of the best scrollbars I’ve seen on FlashDen!
It would be even better though if the content is loaded externally with a preloader and the scrollbar only becomes active once the content (text or .jpg) is loaded.
Well done 
A neat scrollbar for your flash projects, features as follows: - smooth content scrolling - dragger resizes according to contents height ratio - mouse wheel function - drag or click track to scroll - advance actionscript masking for fading effect at top and bottom - scrolles just about anything added into the content area - disables itself if content height shorter that scrollbar track height
this file also works with flash 6 AS 1 , minus advance masking & mousewheel function ;p.
Posted about 1 year ago
Nice Going, this is one of the best scrollbars I’ve seen on FlashDen!
It would be even better though if the content is loaded externally with a preloader and the scrollbar only becomes active once the content (text or .jpg) is loaded.
Well done 
One more thing, I just noticed a bug when using the mousewheel on “Example 2” the dragger doesn’t scroll all the way to the bottom and if you keep rolling the mousewheel the dragger jumps back to the top…
Posted about 1 year ago
its because the drager’s height is too small, it is solved by adding a minimum height for it. add this at line 29 in myScrollBar movieClip actionscript frame:
if (dragH < 50) {
drg._height = 50;
dragH = drg._height;
}
Posted about 1 year ago