swipe event handling
Hello all!
I need some help with swiping in my mobile project....
O want swipe between views. So I add addEventListener(TransformGestureEvent.GESTURE_SWIPE, onSwipe); to my View init function
A it is OK. Its work!
But, I also added <s:List> (horizontal) to view. And when i try scroll (swipe) that List horizontally with finger, i also swipe/scroll my View to another!
I understand that it is something with event bubbling , but I don't know how to fix this. I try use removeEventListener(TransformGestureEvent.GESTURE_SWIPE, onSwipe) on navigator.activeView : View when I startTouch List. No positive effect. ![]()
So. I would glad for any help.
