I’m sure you all tryed the stylized scrollbar component. But the question is…how to change styles? The layout is changed in the parameters panel but where do i change styles?
Thanks.
I’m sure you all tryed the stylized scrollbar component. But the question is…how to change styles? The layout is changed in the parameters panel but where do i change styles?
Thanks.
reframe the question, please.
if your refering on how to change the colors
[AS]
// setting the colors of our scrollbars
globalStyleFormat.face = 0xECECEC;
globalStyleFormat.highlight = 0xC0CCD8;
globalStyleFormat.highlight3D = 0xC0CCD8;
globalStyleFormat.darkshadow = 0x000000;
globalStyleFormat.shadow = 0x4E657C;
globalStyleFormat.arrow = 0x484848;
globalStyleFormat.foregroundDisabled = 0xC0CCD8;
globalStyleFormat.scrollTrack = 0xEBEBEB;
globalStyleFormat.focusRectInner = 0xDBDCE5;
globalStyleFormat.focusRectOuter = 0x9495A2;
globalStyleFormat.background = 0xC0CCD8;
globalStyleFormat.selectionUnfocused = 0xff0000;
globalStyleFormat.border = 0x4E657C;
// applying changes that we made to the UI scrollbar colors
globalStyleFormat.applyChanges();
[/AS]
:: Copyright KIRUPA 2024 //--