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.
