0

我在 Actionscript (Adobe Air) 上编码并尝试在 Windows 7 上测试触摸事件,但它似乎不起作用。我该如何测试它?

this.stage.addEventListener(TransformGestureEvent.GESTURE_SWIPE, onSwipe);

private function onSwipe(e:TransformGestureEvent):void
{
    trace('touch swipe! ' + e.offsetX);
}
4

1 回答 1

2

我很确定你不能在 Windows 上做到这一点。至少我从来都做不到。

PressAndTapGestureEvent 类允许您在支持触摸的设备上处理按下并点击手势。

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/events/PressAndTapGestureEvent.html

在您的手机/平板电脑上进行测试。

于 2012-09-28T22:20:43.573 回答