The drag initiators, and drop target : Drag Drop « Development « Flex






The drag initiators, and drop target

The drag initiators, and drop target
          


<?xml version="1.0"?>
<!--
Code from Flex 4 Documentation "Using Adobe Flex 4".

This user guide is licensed for use under the terms of the Creative Commons Attribution 
Non-Commercial 3.0 License. 

This License allows users to copy, distribute, and transmit the user guide for noncommercial 
purposes only so long as 
  (1) proper attribution to Adobe is given as the owner of the user guide; and 
  (2) any reuse or distribution of the user guide contains a notice that use of the user guide is governed by these terms. 
The best way to provide notice is to include the following link. 
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/

-->


<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" backgroundColor="white">
    <mx:Script>
    
    import mx.core.DragSource;
    import mx.managers.DragManager;
    import mx.events.*;
    import mx.containers.Canvas;
    
    private function mouseMoveHandler(event:MouseEvent):void {
        var dragInitiator:Canvas=Canvas(event.currentTarget);
        
        var dragColor:int = dragInitiator.getStyle('backgroundColor');
        
        var ds:DragSource = new DragSource();
        
        ds.addData(dragColor, 'color');
        
        DragManager.doDrag(dragInitiator, ds, event);
    }
    
    private function dragEnterHandler(event:DragEvent):void {
        if (event.dragSource.hasFormat('color')) {
            var dropTarget:Canvas=Canvas(event.currentTarget);
            DragManager.acceptDragDrop(dropTarget);
        }
    }
    private function dragDropHandler(event:DragEvent):void {
        var data:Object = event.dragSource.dataForFormat('color');
        myCanvas.setStyle("backgroundColor", data);
    }
  
    </mx:Script>
    <mx:HBox>
        <mx:Canvas width="30" height="30" backgroundColor="red" borderStyle="solid" mouseMove="mouseMoveHandler(event);"/>
        <mx:Canvas width="30" height="30" backgroundColor="green" borderStyle="solid" mouseMove="mouseMoveHandler(event);"/>
    </mx:HBox>
    <mx:Label text="Drag a color onto the Canvas container."/>
    <mx:Canvas id="myCanvas" width="100" height="100" backgroundColor="#FFFFFF" borderStyle="solid" dragEnter="dragEnterHandler(event);" dragDrop="dragDropHandler(event);"/>
</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.Get Drag source data formatGet Drag source data format
7.Press control key as drag and dropPress control key as drag and drop
8.Canvas Drag and DropCanvas Drag and Drop
9.Specifying the drag indicator by using the DragSpecifying the drag indicator by using the Drag
10.Specify a Drag ProxySpecify a Drag Proxy
11.Enable and Disable Drag OperationsEnable and Disable Drag Operations
12.Drag Drop To ComponentDrag Drop To Component
13.Set liveDragging to true to dispatch change event continuously as moving the thumbSet liveDragging to true to dispatch change event continuously as moving the thumb
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