我在Air Android应用中使用了基本的手势识别脚本。有时手势无法识别。如果它靠近屏幕边界或者手指在屏幕上移动得太快,则会发生这种情况。
我的代码有问题或我是否需要添加其他设置?
Multitouch.inputMode = MultitouchInputMode.GESTURE;
stage.addEventListener(TransformGestureEvent.GESTURE_SWIPE , onSwipe);
function onSwipe (e:TransformGestureEvent):void{
if (e.offsetY == 1) {
//User swiped towards bottom
showMenu()
}
else if (e.offsetY == -1) {
//User swiped towards top
hideMenu()
}
}