I'm trying to set up a Kiosk using Chromium on Linux with a touch screen. I have two different systems, and hence two lines of questions:
1. On the single-touch system, where the touch appears as a mouse, things are basically working except that almost every touch is treated as a touch-drag because the mouse position moves around a little. This makes triggering links difficult, and it makes the drag-and-drop cursor images appear when the link is an image. Are there any command-line options (or things I can do in javascript or CSS) that would help make the UI more usable in this case?
2. I have a multi-touch system that sends TUIO messages to UDP port 3333. This is a pretty common multi-touch approach on Linux, so I'm hoping you can point me to somebody who has already gotten this working with chromium. My ideal solution would have the touches show up as touch events similar to an iPad's browser (touchstart, gesturestart, etc.). If I need to use javascript or plugins to achieve this, that's an option. Any pointers?
-Joshua