Flex Scrollbar - Remove up - down arrows

20. May 2008
Add the following CSS to your Flex application to remove up/down arrows from all scrollbars:

 HScrollBar{
up-arrow-skin: ClassReference( null );
down-arrow-skin: ClassReference( null );
}
VScrollBar{
up-arrow-skin: ClassReference( null );
down-arrow-skin: ClassReference( null );
}

 

snippets, Adobe Flex

Comments

neven
neven
6/4/2008 2:57:06 PM #
I tried it in flex 2.0.1 and it does not work.
help?
6/5/2008 9:48:13 PM #
It might only work with Flex 3. Flex 3 is the only version of Flex I have experience with.
6/19/2008 11:28:25 AM #
I also found that the same style rules can be used to hide the buttons on a NumericStepper:

NumericStepper
{
  up-arrow-skin: ClassReference( null );
  down-arrow-skin: ClassReference( null );
}
Comments are closed