我在Actionscript(Adobe Air)上編寫代碼並嘗試在Windows 7上測試觸摸事件,但它似乎不起作用。我如何測試它?Actionscript - 如何在Windows中測試觸摸事件
this.stage.addEventListener(TransformGestureEvent.GESTURE_SWIPE, onSwipe);
private function onSwipe(e:TransformGestureEvent):void
{
trace('touch swipe! ' + e.offsetX);
}
您是否嘗試過任何其他手勢,如平移或縮放?我不完全確定Windows 7上支持GESTURE_SWIPE – ThatSteveGuy