我在我的 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()
}
}