- <?xml version="1.0" encoding="utf-8"?>
- <mx:Application
- xmlns:mx="http://www.adobe.com/2006/mxml"
- layout="absolute"
- applicationComplete="appComplete()"
- width="480"
- height="384"
- backgroundGradientAlphas="[1.0, 1.0]"
- backgroundGradientColors="[#007E7F, #830000]"
- frameRate="100">
- <mx:Script>
- <![CDATA[
- private function appComplete():void
- {
- this.addChildAt(new SpriteUIComponent(new ApplicationManager()), 0);
- }
- ]]>
- </mx:Script>
- <mx:VSlider value="100" x="453" y="10" height="364" id="sliderZoom" minimum="50" maximum="200" snapInterval="1" enabled="true" liveDragging="true"/>
- <mx:VSlider value="0" x="10" y="174" height="200" id="sliderTilt" minimum="-90" maximum="90" snapInterval="1" enabled="true" liveDragging="true"/>
- <mx:HSlider value="0" x="35" y="362" width="200" id="sliderPan" minimum="-180" maximum="180" liveDragging="true"/>
- </mx:Application>