This is my first time skinning a scrollbar and I ran into a issue. The button I click and hold to scroll up and down changes in size depending on how much content there is.
Is there a way to keep the button from changing in size?
Thanks in advance! :love:
More Details:
For example if my scrollbar button was a smiley face :ne: and I didn’t want it to stretch.
I am changing my scrollbar components globally by creating an instance of my custom scrollbar and applying it via the style manager in my code.
var SB:customSB = new customSB();
StyleManager.setComponentStyle(ScrollBar,"skin",SB);
I was just using one line like this:
StyleManager.setComponentStyle(ScrollBar,“skin”,customSB);
but I was thinking maybe if I had an instance of my customSB, I could change a property that might disable the resizing of the button. I haven’t found it yet if there is one.