如何在画布上拖动复制的对象?

时间:2011-03-10 10:30:45

标签: flex drag-and-drop flex4

我可以使用Flex中的拖放管理器功能拖动对象的副本并将其拖放到画布上。

原始对象保持不变,并创建对象的新副本。 但是,如果我还想拖动此副本并在画布上以不同方式定位它,我发现该对象不可拖动。

由于此副本是在运行时创建的,我不确定如何实现拖动它?

我的代码如下。

任何建议都会有所帮助。

<mx:Script>
    <![CDATA[
        import mx.managers.DragManager;
        import mx.core.DragSource;
        import mx.events.DragEvent;
        import flash.events.MouseEvent;

        // Embed icon image.
        [Embed(source='car.png')]
        public var globeImage:Class;

        // The mouseMove event handler for the Image control
        // functioning as the drag initiator.
        private function mouseOverHandler(event:MouseEvent):void 
        {                
            var dragInitiator:Image=Image(event.currentTarget);
            var ds:DragSource = new DragSource();
            ds.addData(dragInitiator, "img");               

            // The drag manager uses the image as the drag proxy
            // and sets the alpha to 1.0 (opaque),
            // so it appears to be dragged across the canvas.
            var imageProxy:Image = new Image();
            imageProxy.source = globeImage;
            imageProxy.height=10;
            imageProxy.width=10;                
            DragManager.doDrag(dragInitiator, ds, event, 
                imageProxy, -15, -15, 1.00);
        }

        // The dragEnter event handler for the Canvas container
        // functioning as the drop target.
        private function dragEnterHandler(event:DragEvent):void {
            if (event.dragSource.hasFormat("img"))
                DragManager.acceptDragDrop(Canvas(event.currentTarget));
        }

        // The dragOver event handler for the Canvas container
        // sets the type of drag-and-drop
        // operation as either copy or move. 
        // This information is then used in the 
        // dragComplete event handler for the source Canvas container.
        private function dragOverHandler(event:DragEvent):void
        {

            DragManager.showFeedback(DragManager.COPY);
                                                }

        // The dragDrop event handler for the Canvas container
        // sets the Image control's position by 
        // "dropping" it in its new location.
        private function dragDropHandler(event:DragEvent):void {
            if (event.dragSource.hasFormat("img")) {
                var draggedImage:Image = 
                    event.dragSource.dataForFormat('img') as Image;
                var dropCanvas:Canvas = event.currentTarget as Canvas;

                // Since this is a copy, create a new object to 
                // add to the drop target.
                var newImage:Image=new Image();
                newImage.source = draggedImage.source;
                newImage.x = dropCanvas.mouseX;
                newImage.y = dropCanvas.mouseY;
                dropCanvas.addChild(newImage);
            }
        }

        // The dragComplete event handler for the source Canvas container
        // determines if this was a copy or move.
        // If a move, remove the dragged image from the Canvas.
        private function dragCompleteHandler(event:DragEvent):void {
            var draggedImage:Image = 
                event.dragInitiator as Image;
            var dragInitCanvas:Canvas = 
                event.dragInitiator.parent as Canvas;

            if (event.action == DragManager.MOVE)
                dragInitCanvas.removeChild(draggedImage);
        }            
    ]]>
</mx:Script>

<!-- Canvas holding the Image control that is the drag initiator. --> 
<mx:Canvas 
    width="250" height="500"  
    borderStyle="solid" 
    backgroundColor="#DDDDDD">

    <!-- The Image control is the drag initiator and the drag proxy. -->
    <mx:Image id="myimg" 
              source="@Embed(source='car.png')" 
              mouseMove="mouseOverHandler(event);"
              dragComplete="dragCompleteHandler(event);"/> 
</mx:Canvas>

<!-- This Canvas is the drop target. --> 
<mx:Canvas
    width="250" height="500"  
    borderStyle="solid" 
    backgroundColor="#DDDDDD"
    dragEnter="dragEnterHandler(event);" 
    dragOver="dragOverHandler(event);"
    dragDrop="dragDropHandler(event);">        
</mx:Canvas>

1 个答案:

答案 0 :(得分:0)

dragDropHandler方法更改为:

private function dragDropHandler(event:DragEvent):void {
    if (event.dragSource.hasFormat("img")) {
        var draggedImage:Image = 
            event.dragSource.dataForFormat('img') as Image;
        var dropCanvas:Canvas = event.currentTarget as Canvas;

        // Since this is a copy, create a new object to 
        // add to the drop target.
        var newImage:Image=new Image();
        newImage.source = draggedImage.source;
        newImage.x = dropCanvas.mouseX;
        newImage.y = dropCanvas.mouseY;
        newImage.addEventListener(MouseEvent.MOUSE_MOVE, mouseOverHandler);
        newImage.addEventListener(DragEvent.DRAG_COMPLETE, dragCompleteHandler);
        dropCanvas.addChild(newImage);
    }
}