<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" backgroundColor="white">
<mx:VSlider id="mySlider"
top="10"
left="10"
height="150"
minimum="-180"
maximum="180"
value="0"
tickInterval="45"
snapInterval="45"
liveDragging="true"/>
<mx:Label id="rotatedControl"
text="Rotated Text"
fontFamily="Goudy"
rotation="{mySlider.value}"
top="{this.height / 2}"
left="{this.width / 2}"
fontSize="18"/>
</mx:Application>
|