[Resolved-win8 metro]onTouchMoved\onTouchesMoved

I am playing with using cocos html in a metro 8 app. Everything looks to be working. I am trying to figure out what I can do with touch, but I’m not able to get some of the events to fire.

onTouchesBegin fires, however onTouchesMoved doesn’t. Is anyone else seeing this issue?

we havn’t tested it on metro app yet.

It was a simple fix, it might be an IE10 thing. Touches are interpreted as a pan, thus the following CSS needs to be added to the canvas node in order for the events to happen as expected:

-ms-touch-action: none;

ahh!

Brilliant, Thanks for the tip!