I have an HSlider that has two labels, a starting year, and ending year. the ending year increments everytime a year is closed and I would like the the label on the slider to show the latest closed year.
I have tried changing the slider.labels[1] & it changes the value when I look at it in debug, but not on the screen. I tried a bindable variable, again I can see the labels[1] change in debug but the value isn't displayed on the screen.
hsStart.labels[0] = acResult[0].RATE_MIN;
hsStart.labels[1] = acResult[0].UP_RANGE;
or
_aryLabels[0] = acResult[0].RATE_MIN;
_aryLabels[1] = acResult[0].UP_RANGE;
hsStart.invalidateDisplayList();
<mx:HSlider minimum="1981" maximum="2000" snapInterval="1" id="hsStart" tickInterval="4" liveDragging="true" labels="{_aryLabels}"
width="527" thumbCount="2" change="updateYear(event);" dataTipFormatFunction="formatSlider" allowThumbOverlap="true" horizontalCenter="190" top="118"
sliderThumbClass="Classes.Input.BigThumbClass" fillColors="[0xff0000, 0x00ff00, 0xff0000, 0x00ff00]"/>
This seems so simple, anyone have any ideas?
Paul
