Questions tagged [multi-touch]

multi-touch refers to a touch sensing surface's (trackpad or touchscreen) ability to recognize the presence of two or more points of contact with the surface (Wikipedia)

1283 questions
4
votes
1 answer

Faking WPF Manipulation Events

I want to fake manipulation (or touch) events using a mouse / keyboard. When I try to raise the events using: RoutedEventArgs e = new RoutedEventArgs(ManipulationStartedEvent,this); RaiseEvent(e); Gives me the error "Cannot convert RoutedEventArgs…
phil heslop
  • 95
  • 3
  • 9
4
votes
1 answer

How to disable multitouch when having several views?

I created my own custom view that extends UIControl. This custom view has its own touch implementation. I implemented touchesBegan, Moved, Ended, and Canceled methods in it. In the main view controller, I created several instances of this view. So…
pnmn
  • 1,127
  • 1
  • 14
  • 22
4
votes
3 answers

Possibility of dragging more than one element on a webpage with jQuery

I create a web application with HTML5, CSS3 and jQuery, jQuery UI and jQuery Mobile. Now I have a little example (example: http://jsbin.com/ayoba4/2)
Tim
  • 13,228
  • 36
  • 108
  • 159
4
votes
0 answers

Android - ACTION_POINTER_UP not called until movement of remaining touch

Whilst trying to debug a multi-touch issue, I ended up stripping my onTouchEvent code right down to see what was going on, and found the following issue. Am I missing something? Cheers in advance! Finger 1 down: ACTION_DOWN is called – OK. Finger 2…
CamS
  • 61
  • 1
  • 3
4
votes
0 answers

Emulate Mac trackpad with MS Precision trackpad

I'm currently working on a hackintosh machine with a precision trackpad, which is currently being handled by VoodooPS2 which is the staple for hackintosh keyboard/trackpad support. The precision trackpad is Microsoft's attempt to rival the Mac…
Lukas Palmer
  • 478
  • 1
  • 4
  • 13
4
votes
1 answer

How to disable WPF Tablet Support in Surface 4 Pro?

I've inherited an WPF application that targets Net 3.5, And I have to install it in a Surface Pro 4 (I5). The application is hanging in different points, and I have observed that animations sometimes never fire the completed event (maybe they end up…
SERWare
  • 392
  • 3
  • 15
4
votes
2 answers

Move, Scale and Rotate ImageView OnTouch not working

i have days trying to make this work, checked out some other answers and none seem to work for me :S i add a sticker to a RelativeLayout, i want the sticker to Move, Scale and Rotate with OnTouch Methods once it is selected (it has an…
Daniel Andujar
  • 1,184
  • 1
  • 11
  • 22
4
votes
0 answers

How to catch and process JavaFX TouchEvent in Swing Application?

I developed a Swing application in which I now need to implement a customized multi-touch gesture. After some research, the easiest approach seemes to be the use of JavaFX, because it can be embedded in Swing and provides events for every finger on…
4
votes
1 answer

WPF Drag and Drop with Adorner using mouse and touch

I want this to be good question, so I'll write in details what I would like to achieve, what I've found on the internet and I show what I've done so far and what I've tried. I need to add drag and drop functionality to my application. I have Images…
Misiu
  • 4,738
  • 21
  • 94
  • 198
4
votes
3 answers

What devices are available to test WM_GESTURE and WM_TOUCH code on a desktop machine?

I'm writing some code to handle WM_GESTURE and WM_TOUCH events in Windows 7, but I can't figure out how to test it. I do my development in Boot Camp on a 17" Mac Book Pro. So far, I have determined that the Boot Camp trackpad driver in Windows 7…
Scott K.
  • 1,761
  • 15
  • 26
4
votes
5 answers

How to disable multi click on button?

I have a UITableView: Cell 1: Button 1->push to view controller A Cell 2: Button 2->push to view controller B It works fine. However, when I try to hold and press two buttons at the same time, my app receives following warning: nested push…
TienLe
  • 614
  • 2
  • 9
  • 33
4
votes
2 answers

Pinch event with Hammer.js and touch-emulator

Am trying to detect the pinch event using Hammer.js and the touch emulator in Chrome on desktop. Can detect pan and tap no problem but pinch doesn't seem to be responding. Have modified sample code on codepen…
HuwD
  • 1,800
  • 4
  • 27
  • 58
4
votes
1 answer

simulate touch events for html5

I am building an html5 game and I would like to send multi touch events to the browser programmatically. My idea is to setup a node server and forward the events to the webpage. Is there any library that already does this or could I simulate such…
Pavan K
  • 4,085
  • 8
  • 41
  • 72
4
votes
0 answers

How to pass touch event from parent view to child view

I am writing an code to handle touch event based on what suggested here. Basically I wanted to pass touch event back to child view from parent view. Following what I did and remaining. What I need Detect multitouch event on child view: DONE then…
CoDe
  • 11,056
  • 14
  • 90
  • 197
4
votes
1 answer

Windows 7 Calculator breaks WPF Multi-touch?

I'm having a rather odd problem with a C# and WPF HMI I am working on currently. The HMI is a fairly complex program which allows the use to add and remove modules from a work area, dragging and resizing them to make the page they work on…
Aktra
  • 63
  • 4