Mouse Move fires Mouse Click
I am trying to have two guestures on the stage which I thought should be pretty simple implemented:
Mouse_Move for sweep Gestures and mouse click to enable..
So I have 2 Eventlisteners on my stage:
stage.addEventListener(MouseEvent.CLICK, taphandler);
stage.addEventListener(MouseEvent.MOUSE_DOWN, mousedownhandler);
The main problem is that every type of sweeping on the screen also fires the taphandler()..
Any ideas on how to identify the correct event?
I tried to to my taphandler only if(!event.buttondown) but no success.
