Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你能在 Adobe Device Central 上测试 touchEvent,谷歌它找不到任何信息。我知道您可以进行多点触控,但单点触控似乎不起作用......有什么建议吗?
谢谢
您需要设置 Multitouch.inputMode=MultitouchInputMode.TOUCH_POINT;
http://help.adobe.com/en_US/FlashPlatform/beta/reference/actionscript/3/flash/ui/Multitouch.html#inputMode
不在调试器中显示鼠标单击事件,因为触摸点在设备上运行时会注册它们。
另请注意,您可以使用鼠标单击事件,即使在启用多点触控模式后仍然可以正常工作:
addEventListener(TouchEvent.TOUCH_BEGIN, touchBeginHandler); addEventListener(MouseEvent.CLICK, touchBeginHandler);