touchscreen

Silver/WPF remove mouse events, but allow touch events

Do any1 know how to remove mouse event, but allow only touch events. In brief, I have 2 monitors. 1 is the primary display, another is a touch screen. I don't want the mouse cursor to move over to the second display. For the display, it will only accept touch events, so hopefully, when the 2nd screen is touched, the mouse should stay ...

davinci-board and touch-screen

Hi all I am using linux davinci (33bd223c). my embedded card is da830 and i have a touch screen on it - TS2046. I found a driver on the net - (two files - TS2046.c TS2046.h , and some changes to the config and makefile). I know that the board is connected to the touch screen via spi. to be accurate - SPI1. Despite all of this, i dont hav...

How to use ADB to send touch events to device using sendevent command?

Hi I am trying to send touch events to a device using AndroidDebugBridge, so that I can do some basic automation for UI tests. I have followed the discussion in LINK. I am able to use sendevent to simulate touch on emulators, but unable to do the same on a device. Like in above link the emulator seems to send out 6 events for each tou...

Simulating a touch screen on mobile device

Hi, Does anyone know if C++ or C# has a method to simulate a touch screen? For example I have device that has an interface with six buttons. Each button represents a program so when a button is touched, it will open a program that's related to that button. So I want simulate a touch screen to touch each button. Can it be done? than...

windows phone 7, xna, how do I sample the touch screen more regularly

ok, so apparently xna games can only run at 30fps, which is a shame, because our game on iphone looked alot better at 60... at any rate, because the only way you can get information about the touch screen state is to get its current state, effectively this means you can only sample the touch screen at 30 fps. even if our game has to ru...

How to use multiple Cameras with TouchLib

Hi there, has anyone ever used multiple cameras with the Touchlib? Seems to be working somehow, i found a blog article about the multi-camera setup by some guy called Alex Popovich in a blog entry. In the article, they are talking about custom PS3 Cam drivers, which sounds great because i am using PS3 Cams, too. But i started to think,...

C# page scrolling like iPhone?

How do you make horizontal scrolling pages like the iPhone menu? It's for a touchscreen application and I want to make several pages with buttons. ...

Is a touchscreen useful/effective while programming?

Does anyone have experiences if working with a touch screen monitor is useful and effective while programming? I mean most things an effective programmer will do with the keyboard, but I wonder if the other things (clicking through menus, scrolling through compilation logs, and of course copy'n'paste) can be done more efficiently with a ...

How Tissot T-Touch works?

It's quite unrelated to programming but interesting. How does Tissot T-Touch work? What is the mechanism of its sense of touch? It's not capacitive - clock's face appears to be made from metal; it's not resistive. ...

How to tell what physical device clicked a button in C#?

I have a Form with buttons. This application is meant to run on a touchscreen computer. When a button is clicked I would like to know whether it was clicked by the mouse or the touchscreen. Is this possible? If so, how? ...

Same mobile web design for mobile devices with touchscreens and keyboards

Does anyone have resources about how to design for touchscreens and keyboard devices at the same time? Making navigation with the BlackBerry joystick as easy as with iPhone and Android? ...

Compensate for Auto White Balance with OpenCV

I'm working on an app that takes in webcam data, applies various transformations, blurs and then does a background subtraction and threshold filter. It's a type of optical touch screen retrofitting system (the design is so different that tbeta/touchlib can't be used). The camera's white balance is screwing up the threshold filter by bri...

suggestion for touch screen interface of web application

hi, i want to create survey application which will get input from user on touch screen on exibhitions of our company. Can anyone suggest some good CSS or layout examples? ...

What are the Touch Events available to Javascript on a os- Windows Mobile 6.1, device: Treo 800w, Opera 9.5 Gears Compatible

I am struggling to find any documentation on this subject. I want to use a tag to capture a signature via the touchscreen. It seems to recognize only "onclick". What are the " touch events" that are available to Windows Mobile 6.x Opera Browser. Does it convert mouseover, mousedown, mouseup to ontouchstart, touchend etc..? Thank you...

Flex On Touch Screen System: Does web sites in flex works on touch screen system?

Hi, I build a web site in flex that some time take input. Will this website works on Touch Screen environment(KIOSK).My question is we have to make any change to handle input such as prompt on screen keyboard when input fields are get focused or it will manage my device and OS of system(KIOSK, Touch screen system) itself. ...

WPF button press on Windows 7 mulit-touch

I am developing a WPF kiosk like client that will be deployed on an HP TouchSmart Windows 7 machine with multi-touch enabled. My problem is that with Windows 7 multi-touch, the application does not recognize a finger 'tap' as a button press event, and therefore the button press Trigger to change color is never fired. The Windows 7 an...

Triggering the ":active" pseudo-class on a touchscreen

I'm currently developing a JavaScript application which will be deployed on a touchscreen kiosk running Chrome in kiosk mode. I've noticed that when I use a mouse to click the buttons on the interface, the styles applied by the ":active" pseudo class is visible when the mouse is down. My problem is that the same button triggered by touc...

How do I capture when a finger touches the screen and when a finger is removed from a screen on touchscreen device

Hi, I am developing an app for a touchscreen and I would like to capture the equivalent of the mouse down and mouse up events. For example, when the user has their finger touching the screen, a javascript function will execute, but when the finger leaves the screen function stops. I am using firefox 3.5, with the jQuery framework for...

Virtual Mouse/TouchPad Using TouchSreen

Is it possible to have a "virtual touchpad" or "virtual trackball" on a touchscreen monitor? I have several monitors and only one of them is touchscreen. I am trying to do away with the mouse and keyboard for an app I am working on and would like to use only the touchscreen. I need something like a virtual touchpad on my touchscreen mo...

android softkeyboard onTouch()

What is best way to implement custom SoftKeyboard, so it recognize where user push, and where user release, and then use both coordinates to determine character? E.g. if i push Q, then move finger to E, then release. Application should get 2 coordinates. Basically simple line. One way is to make it trough buttons and using onTouch(View...