https://github.com/apache/royale-asjs/tree/develop/examples/royale/DragAndDropExample
https://github.com/apache/royale-asjs/tree/develop/examples/royale/MultiDragDropExample

> On Jun 28, 2020, at 9:27 PM, Hugo Ferreira <[email protected]> wrote:
> 
> Hello,
> 
> With Flex I can easy drag and drop a Flex Panel.
> Just listen for mouse down and up and use the built in startDrag and
> stopDrag functions:
> 
> private function handleDown(event:MouseEvent):void
> {
>    this.startDrag();
> }
> 
> private function handleUp(event:MouseEvent):void
> {
>    this.stopDrag();
> }
> 
> How to do the same with Royale ?
> 
> Thank you,
> 
> Hugo.

Reply via email to