I’m skinning scrollbar in my flex app and got one problem.
This white square between scrollbars(view the image) ruibs all my design and i need to disable it, make it invisible, change it background color, alpha or smth like this.
I can paste some code here but i think there is no need in it.
Working in Flex 3.
any ideas?
alt text http://img97.imageshack.us/img97/9206/scrollbar.png
I actually found the culprit looking inside the Flex framework.
This square (called
whiteBox) is created in Container.as.It’s pretty easy to get rid of it, you just have to create a class extending the container you want to use.
Exemple for a Canvas :
Then in your MXML:
…and then no white square anymore 😉