Touchscreen not recognized
Hello,
I'm using HTML5 canvas with Animate to make an application that will use a touchscreen.
My problem is that something like on click buttons and whatever needs the "mouse" to be pressed down for some time does not work.
The button will triger the click function however it wont show the "down" state.
I tried to enable touch to see if that would help but it does not, in fact it seems to not detect that I have a touch device:
console.log("Enable touch: "+createjs.Touch.enable(stage)); ==> returns false
if(createjs.Touch.isSupported()){ ==> does not trigger
console.log("touch is supported");
}
I'm running this in windows and the same thing happens when I run it on my target device (a brightsign player that can run HTML5).