Manage multi-point touchscreen

Is it possible for hype to manage multi-point touchscreen?
The current implementation is very confusing for any touchscreen usage. For instance, people select something by touching the screen with more than one finger. For instance with his hand, hype is not able to detect it since more than one finger did touch the screen.
At minimum, we should be able to deal with that.

There’s no built-in ways to handle multiple touches at once. You’ll need to use your own JavaScript to do this.

The general way to integrate it into Hype would be add a Unique Element ID (via Identity Inspector) for the element you want to have multiple touches, and then add an On Scene Load handler to run javascript that would setup the multitouch handlers.