开发者

Flex: How can I drag the actual element rather than a proxy?

开发者 https://www.devze.com 2022-12-14 01:32 出处:网络
I\'m trying to implement a dragging system which can only be described as similar to dragg开发者_开发问答ing the map on Google Maps. I can set up dragging easily in Flex, but unfortunately the standar

I'm trying to implement a dragging system which can only be described as similar to dragg开发者_开发问答ing the map on Google Maps. I can set up dragging easily in Flex, but unfortunately the standard model of dragging i.e. dragging an element proxy and dropping it in another element is not what I'm after.

Is there anything built into flex where the actual element rather than a proxy can be repositioned in a different place within the same parent? Or will I have to hand code something using mouse events as you would if implementing a solution in JavaScript?

Cheers,

Chris


DragManager and its associated constructs are specifically for dragging and dropping. You will likely want to place your draggable item inside of a canvas with scroll policies turned off, and capture MOUSE_DOWN on the object, then activate MOUSE_MOVE, translating its origin analogous to the change in mouse position, deactivating the MOUSE_MOVE listener when MOUSE_UP or Event.MOUSE_LEAVE fires on the stage.


Ok found a much more simple solution! Most elements have a dragStart and dragStop method which can be attached to the mouse down/up events.

0

精彩评论

暂无评论...
验证码 换一张
取 消