Select to view content in your preferred language

How to over-ride the shadow around ESRI's vertical Slider for zooming

465
2
04-30-2010 06:06 AM
karldailey
Deactivated User
Theres a black transparency shadow around the slider, and I cant find where in the class 'com.esri.ags.controls.navigationClasses.NavigationSlider' this can be over-ridden.

I had also checked adobe's slider to see if they had an attribute for it but I couldnt find 'http://livedocs.adobe.com/flex/3/langref/mx/controls/HSlider.html'

anyone have any suggestions?  I just want to change its color
Tags (2)
0 Kudos
2 Replies
DasaPaddock
Esri Regular Contributor
I think you want to change the background of the Navigation component which extends VBox and is the slider's container. Try adding this and changing the values:

    <mx:Style>
        Navigation
        {
            backgroundAlpha: 0.5;
            backgroundColor: #000000;
        }
    </mx:Style>
0 Kudos
karldailey
Deactivated User
Thanks, that did it 🙂
0 Kudos