| <?xml version='1.0' encoding='UTF-8'?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| --> |
| <!-- Simple example to demonstrate the Spark VSlider control--> |
| <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx"> |
| |
| <fx:Script> |
| <![CDATA[ |
| |
| // Function to change the image size. |
| private function changePosition():void |
| { |
| fxImage.x=vSlider.value; |
| } |
| ]]> |
| </fx:Script> |
| |
| <!-- Panel used as a container for Spark VSlider control examples --> |
| <s:Panel title="Spark VSlider Control Example" height="75%" width="75%" > |
| |
| <s:Group left="10" top="10"> |
| <!-- Spark VSlider that calls the function changePosition anytime the value is |
| changed --> |
| <s:VSlider id="vSlider" minimum="20" maximum="200" liveDragging="true" |
| change="changePosition();" value="20" x="0" y="0"/> |
| <mx:Image id="fxImage" source="@Embed('assets/c2.png')" |
| creationComplete="fxImage.x=vSlider.value" /> |
| </s:Group> |
| |
| <s:Label width="100%" text="Drag the slider to move the image" left="10" bottom="10"/> |
| |
| </s:Panel> |
| </s:Application> |