Copy link to clipboard
Copied
im using mousedown, pressmove & pressup event on object (create & easljs) for drag & drop activities. Everything was fine (windows with mouse, mobile phone & tablet) until digital smart board becomes a thing..it runs both windows & android but my superior make a noise why its not working on windows environment...howww
Copy link to clipboard
Copied
what's "digital smart board"?
Copy link to clipboard
Copied
55"/65"/75" interactive touchscreen board that runs windows/android os..normally use for presentation/ preschool for teaching
Copy link to clipboard
Copied
what kind of project (android, canvas, projector) are you trying to run on that touchscreen, AND did you test your app on any other touchscreen device before deploying?
Copy link to clipboard
Copied
its HTML5 canvas (createjs & easljs) , runs as web page....yes it works fine in both mobile phone & tablet
Copy link to clipboard
Copied
show the code you're using to prevent rubberbanding.
Copy link to clipboard
Copied
had a slight issue using this at first on my android device
Copy link to clipboard
Copied
Try this tutorial. https://www.youtube.com/watch?v=JYBWehkks_Y
Copy link to clipboard
Copied
already run the sample fla..it doesn't work..try run the file (html) & open developer tools..u can see your mouse changed to touch pointer...but the drag & drop doesnt work there..means it cant work in windows touch environment, u can test it using microsoft surface too.
Copy link to clipboard
Copied
Hi There, I am with the same problem, did you get a solution? Thank you!
Copy link to clipboard
Copied
again, with trouchscreens you need to prevent rubberbanding use:
createjs.Touch.enable(stage, true, false);
Copy link to clipboard
Copied
Sorry, I saw you posting this on several posts, this is not working for us.
Copy link to clipboard
Copied
then what fails first? mousedown? mousemove? mouseup?
Copy link to clipboard
Copied
Hi.
If CreateJS events don't work, try using native JavaScript touch events.
https://www.w3schools.com/jsref/obj_touchevent.asp
I hope this helps.
Regards,
JC
Copy link to clipboard
Copied
Hi,
I'm having the same issue. I don't have a smart board for the testing so I'm in the dark. Did anyone found a solution for this?