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)
Questions tagged [multi-touch]
1283 questions
0
votes
2 answers
multiTouch and audio
I have some multitouch questions
this is one part of my code in .m file
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
UITouch *touch = [touches anyObject];
CGPoint pt = [touch locationInView:self.view];
if(pt.x>634 && pt.x<733 &&…

施毛佑
- 5
- 3
0
votes
1 answer
Multitouch Android, simple aplication doesn't work, why?
i tried to make a simple application to learn how to make a mutlitouch, but it doesn't work properly, i have to touch a strange combination of buttons to initiate action, any ideas?
the code is there:
http://wklej.to/MnwGl

Tomasz Trela
- 1
- 2
0
votes
3 answers
cocos2d how do I prevent multi touch propagation to previous layers?
I'm handling the touches manualy through a class that holds every touchable sprite. Also, every menu is a CCLayer, and when I change from one menu to the other, I use the CCTransition### and get the new scene.
So, the layers are "still there" and…

Agustin
- 163
- 2
- 9
0
votes
3 answers
TOUCH_POINT and GESTURE events at the time in as3
I've been fighting with an issue regarding multitouch in as3. I'm trying to make an app where the user should be able to move a picture around the stage (touch_point) as well as zoom on it by gesturing (pinch gesture). Is it even possible?
Thanks!!

dalvallana
- 469
- 6
- 13
0
votes
1 answer
Previous coordinates of a touched object
I'm programming with Processing, what i need is the equivalent of pmouseX/Y but for touch, but I can't use pmouse because I use multi-touch and I need previous coordinates of each touched point. I don't know if I've made myself clear, to do an…

cifz
- 1,078
- 7
- 24
0
votes
1 answer
Is there a way to utilize the Mac Laptops' touchpad pinch gestures on Flex?
I have written a Google Maps-based application in Flex. Currently you can use the mouse wheel to zoom in and out the map. Is it possible on Mac laptops to use the pinch gesture to zoom?

airportyh
- 21,948
- 13
- 58
- 72
0
votes
2 answers
multitouch results in methods firing twice
I'm working on a little game that divides the ipad screen in a lower half and upper half. each player has his own section to play with (one finger play). I had to enable multitouch on the view because, when two players would hit the screen at the…

Ramin Afshar
- 989
- 2
- 18
- 34
0
votes
1 answer
android multitouch emulator
Ok, so after they released android tools r18 google said they added support for multitouch in the emulator as well as sensor stuff.. however I haven't made the multitouch work eventough I made the sensor thing work and is well.. the same but in…

Raykud
- 2,488
- 3
- 21
- 41
0
votes
1 answer
Android multi touch not working
I've recently been trying to use multi touch for my app but haven't been able to find any help with my problem ill post the bit of my code im having trouble with.
im using and old adk with a api level of 7 is multi touch available for androids…
user1322694
0
votes
1 answer
Why is getPointerCount() always returning 1?
An experiment in learning Android is to detect two-finger presses. I have an app that changes a custom ImageView to a random pic on a touch. That works fine. I now want it to only change the picture when two or more fingers press. I have an IF…

Tickled Pink
- 969
- 2
- 14
- 26
-1
votes
1 answer
touchscreen monitor to macmini - can it do multitouch, swipe, expand, etc?
I'm trying to create a iPad-type of app (say using a Mac App), except something that works on a large touchscreen (say 32" monitor) that is attached to a MacMini.
1) Is it possible to get iPad-type of actions (multitouch, swipe, expand, etc.) via…

Matt
- 247
- 1
- 4
- 12
-1
votes
1 answer
Svelte component register each finger as a separate touch event
I have instances of a Svelte component inside a loop and I want to be able to slide the .box element of each Slider component independently with more than one fingers at the same time.
Here's a reduced version of the code (couldn't include it in a…
-1
votes
1 answer
How to use the Touchscreen in Java as "Mouse"/ Touch Input
In Paint (in Windows) i can use all of my fingers to paint. However in Java i was not able to use more than one finger( Mouse Pointer) at the same time.
In my application I create a piano and it would be cool to be able to play 2 or more Notes at…

wiizarrrd
- 1
- 1
-1
votes
1 answer
Allow multiple buttons to be pressed simultaneously via multitouch in QT
I’m looking to allow multiple buttons to be pressed at the same time when using a multi touch device for an application developed in QT for ios/android etc
I cannot for the life of me see how to do this.
Any help much appreciated

Richard Williamson
- 153
- 1
- 8
-1
votes
1 answer
2 click events at the same time -> Javascript
I want to develop a game with Javascript.
Two Players can play at the same mobile device. I will need a method to check, when a player clicks. The Problem is, that they can click at the same time. Therefore I tried JQuery and native Javascript…

raimannma
- 13
- 4