Running on Windows, AIR 14,
To test this, I set up :
Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;
Multitouch.mapTouchToMouse = false;
addEventListener(MouseEvent.CLICK, function() { trace('x') } );
When I tap using touch I get the trace... Do I need to do something special for mapTouchToMouse to take effect ?
Thanks!