I have a component that is drag enabled, and I want him to be click
enabled also...
Unfortunately I am not able to catch any click event (or even
mouseUp)...
Do you have any ideas to solve this problem ?
<mx:Canvas
mouseDown="drag(event)"
mouseUp="click(event)"
>
<mx:Script>
<![CDATA[
[Bindable] public var color:uint = Constants.DEFAULT_COLOR;
private function click(e:MouseEvent):void {
// do my click things
}
private function drag(event:MouseEvent):void {
var ds:DragSource = new DragSource();
ds.addData(color, 'color');
DragManager.doDrag(this,ds,event);
}
]]>
</mx:Script>
</mx:Canvas>
{Maz}