Flex - Removing scroll arrows from Flex ScrollBars through CSS

Tags: , ,

This will result in just a scroll bar and no arrows if you add this in a css that you import into your application.  If done in this way, it will globally affect your application.

ScrollBar {
 
      upArrowSkin: ClassReference(null);
      downArrowSkin: ClassReference(null);   
 
}