0
votes
0answers
26 views

UIButton event not called at right time

I have two uibuttons as controls for a game. I will just simplify it so it makes sense out of context b1 = calls event on touch down, and another on either touch up inside or outside (say setting the ...
0
votes
0answers
18 views

Javascript/GWT - Can multitouch events be captured on a touchpad?

Can multitouch events (two, three fingers) be captured on a laptop browser (ex. Chrome) when using the touchpad, with Javascript / GWT ?
1
vote
1answer
107 views

Does targetTouches track touches moving simultaneously on multiple elements?

Suppose I've got four fingers down: two fingers (1, 2) in element A and two (3, 4) in element B. Suppose I then move finger 1 and finger 3. I should be looking at a touchmove event which will ...
1
vote
1answer
120 views

Is there a permission to check the number of touch points a device can handle at once?

I'm working on an app that needs to be able to handle up to 5 simultaneous touch events (essentially a click with all 5 fingers at once, anywhere on the screen), but I realized that my testing device ...
4
votes
1answer
924 views

android ndk multitouch?

im writing an application that uses only native code. So is it possible to get multitouch events in ndk? I feel like ive serched the whole web, but without finding anything! Does anyone know how to ...
1
vote
0answers
87 views

Is it possible for an Adobe AIR app to receive touch events in OS X?

I'm working on software in OS X that receives touches from a multi-touch device and posts them to the system for applications to process. I was hoping that it would be possible to support Adobe AIR ...
0
votes
1answer
371 views

unifying touch and click events

I'd assume this question has been asked to death, but I'm not finding anything good. What I'd like is a unified set of events that span devices. I know the mapping isn't always 1 to 1, but just ...
1
vote
2answers
2k views

Android - How to handle two finger touch

The documentation say this about that: A gesture starts with a motion event with ACTION_DOWN that provides the location of the first pointer down. As each additional pointer that goes down or ...
2
votes
0answers
530 views

WPF Multitouch - How to get all touchpoints?

We are evaluating touchscreen keyboards and for one we need to track 10 fingers at the same time. The problem is that the touchscreen driver is very wonky (and there is no fixed version). It sends out ...
0
votes
1answer
260 views

Is it possible to detect pinch zoom start and end gestures in Eclair (2.1)?

My app supports Eclair 2.1, API level 7. I have a need to detect pinch-zoom gestures, both when they start and when they end. Is this possible without using ScaleGestureListener (only available from ...
0
votes
1answer
251 views

Custom QGestureRecognizer and QTouchEvents

I want to use a custom input device for multitouch input in a Qt application. I plan to create QTouchEvents based on my raw input data. I also want to generate custom gestures. As far as I ...
5
votes
3answers
3k views

Android : Multi touch and TYPE_SYSTEM_OVERLAY

I am trying to get multiple touch events on a system overlay view, but am only receiving the MotionEvent.ACTION_OUTSIDE event. Is there any possible way of getting multiple touch events on a system ...
2
votes
1answer
526 views

Qt C++ QTouchEvent & TouchPoint Confusion

Just trying to wrap my head around QTouchEvent. Any help/advice is appreciated. Specifically I'm a bit confused when a touch event is fired (for e.g. TouchBegin); does this represent only one unique ...
1
vote
2answers
966 views

Capture all Windows 7 Touch events, not just on my form when it has focus

I have an application which has a form, but the fact that it has a form is irrelevant. With this app, I need to listen to all Operating System level Touch events. Basically I need to capture that the ...
1
vote
0answers
262 views

How To Handle Two-Finger Tap Event ? WPF

In my program I would like to make two different things, one with the single touch, second with the two finger touch. But I don’t know how to handle the difference between single touch and two finger ...
2
votes
2answers
5k views

Android MotionEvent.getActionIndex() and MultiTouch

I am trying to get the pointer id whene the event MotionEvent.ACTION_MOVE happens. I am doing it by calling event.getActionIndex() but it always returns 0 for the second, the third, the forth and the ...
0
votes
1answer
699 views

Android multitouch testing using android testing framework

I would like to write an automated test (using android testing framework with robotium) that generates multitouch events. How can I achieved that using MotionEvent? Is there any other way to dot it? ...
3
votes
1answer
552 views

Android touch events with multiple views

How can I have different views accepting different touch events at the same time?
0
votes
3answers
3k views

AS3 Multitouch Event Behavior

If I set Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT; will there still be dispatched a MouseEvent.CLICK when the users tabs? or will there ONLY be dispatched a TouchEvent.TOUCH_TAP event ? ...
3
votes
2answers
3k views

MotionEvent multiple touch events get mixed up and influence each other (see demo video)

Purpose of the app: A simple app that draws a circle for every touch recognised on the screen and follows the touch events. On a 'high pressure reading' getPressure (int pointerIndex) the colour of ...
1
vote
2answers
797 views

Is it possible to catch Win7 multitouch events, convert them to mouse and keyboard events and send them to another application?

I have following Situation: I have a special 3D program which I need to make able to react on multi-touch events without changing the program itself. Therefore I need a mapper program, which receives ...
6
votes
3answers
2k views

Is there a way to trigger gesture events on Mac OS X?

I want to trigger multitouch gesture events on Mac OS X. Is there a way to do this? Mouse or keyboard events can be triggered with CGEventCreateMouseEvent and CGEventCreateKeyboardEvent. Is there ...
2
votes
2answers
937 views

How to simulate Touch event in Linux/Mac/Windows?

I wanna to simulate touch event in Windows / Mac OS X or Linux (OS is not critical).
6
votes
3answers
5k views

How to simulate touch event?

I want to be able to invoke touch events without user interactions. Is this possible?
2
votes
1answer
3k views

Zoom in/out gesture UIView

i've been trying to capture gesture zoom in/out in a UIView. Code: NSSet *allTouches = [event allTouches]; NSArray *twoTouches = [allTouches allObjects]; UITouch *first = [twoTouches ...