Set Labels for VSlider
<?xml version='1.0' encoding='UTF-8'?>
<mx:Application
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
import mx.controls.Alert;
public function showMsg(msg:String):void {
Alert.show(msg);
}
</mx:Script>
<mx:Panel title="Profile">
<s:VGroup>
<mx:Label fontWeight="bold"
text="How tall are you (cm)?" />
<mx:VSlider id="yourHeight"
minimum="0"
maximum="300"
tickInterval="50"
snapInterval="1"
labels="[0,50,100,150,200,250,300]"
change="showMsg(yourHeight.values.toString())" />
</s:VGroup>
</mx:Panel>
</mx:Application>
Related examples in the same category