Set liveDragging to true to dispatch change event continuously as moving the thumb : Drag Drop « Development « Flex






Set liveDragging to true to dispatch change event continuously as moving the thumb

Set liveDragging to true to dispatch change event continuously as moving the thumb
           

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
        
        import mx.events.SliderEvent;
        import mx.controls.sliderClasses.Slider;
       
        private function sliderChangeLive(event:SliderEvent):void {
            var currentSlider:Slider=Slider(event.currentTarget);
            thumbLive.text=String(currentSlider.value);
        }
      
    </mx:Script>
    <mx:HSlider liveDragging="true" change="sliderChangeLive(event);" />
    <mx:TextArea id="thumbLive" />
</mx:Application>

   
    
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Setting the dragMoveEnabled property to move instead of copySetting the dragMoveEnabled property to move instead of copy
2.Dragging and dropping within a component, to allow orderingDragging and dropping within a component, to allow ordering
3.Create DragSource object and add data to itCreate DragSource object and add data to it
4.Performing a two-way drag and dropPerforming a two-way drag and drop
5.Dragging and dropping in the same controlDragging and dropping in the same control
6.The drag initiators, and drop targetThe drag initiators, and drop target
7.Get Drag source data formatGet Drag source data format
8.Press control key as drag and dropPress control key as drag and drop
9.Canvas Drag and DropCanvas Drag and Drop
10.Specifying the drag indicator by using the DragSpecifying the drag indicator by using the Drag
11.Specify a Drag ProxySpecify a Drag Proxy
12.Enable and Disable Drag OperationsEnable and Disable Drag Operations
13.Drag Drop To ComponentDrag Drop To Component
14.Get drag source from DragEventGet drag source from DragEvent
15.Canvas drag enter eventCanvas drag enter event
16.Explpicitly handle the dragOver eventExplpicitly handle the dragOver event