我正在尝试在 as3 上为 android 开发一个应用程序。当我设置为多点触控时
Multitouch.inputMode = MultitouchInputMode.GESTURE;
命令,我不能用一根手指使用任何鼠标事件,尽管我的设备支持所有触摸事件类型。
trace("gesture support: "+ Multitouch.supportsGestureEvents +
" touch support: " + Multitouch.supportsTouchEvents);
gesture support: true touch support: true
根据 as3 类参考,我必须将触摸事件作为鼠标事件处理,就像在 MultitouchInputMode.NONE 中一样。我也不能使用按钮的点击事件。是否有任何参数可以设置在手势模式下使用鼠标事件?