1
vote
0answers
12 views

Android: Distinguishing between scaling and other multi-touch gestures

I'm currently in the process of creating an application in which a large amount of input is through the use of surface gestures. This also involves the use of multi-touch gestures. In a very short ...
1
vote
1answer
147 views

Detect multi-touch gestures or drags with mouse in Mac OS X App

How can one detect when a drag is happening or a swipe on the track-pad or magic-mouse is occurring in a Mac OSX app being made in XCode. By drag I mean the user has clicked on the left or right edge ...
0
votes
0answers
61 views

one finger drag multi gesture in iOS

I have one Question. I'm make this code but this code rotate or scale only one works. How to scale and rotation changes one Finger drag at the same time. help me please degree calculate is too ...
0
votes
1answer
266 views

Code that listens for swipe-up gesture not working

I am trying to run an alert when a swipe-up gesture occurs anywhere on the document; and, ultimately also when a 2 finger swipe-gesture occurs. I've used hammer.js to listen for gestures before and ...
0
votes
0answers
58 views

Access touch history when `touchmove` event is captured

I am trying to learn how to use the touchmove event in browser to detect multitouch gestures. When a touchmove event is captured I can obtain a list of current touch points. However that is not very ...
0
votes
1answer
177 views

Detect scale and translate gestures without ScaleGestureDetector

I try to implement multi-touch-gesture detection for API level 7. That means I do not have a ScaleGestureDetector. At the moment I have something like this but it does not work well and I have more ...
1
vote
0answers
100 views

Unable to recieve all the pointer/touch messages injected at application level using Windows 8 Touch Inject API

I am able to inject pointer/touch messages succesfully but unable to recieve all the messages injected on an application(messages are captured in the application) though all the messages are injected ...
1
vote
2answers
954 views

How to implement a two-finger double-click in Android?

I know how to detect a double-click and a two-finger touch event, but how can I combine these to react so somebody needs to double click with two fingers? By default, Android has the long press to ...
3
votes
3answers
426 views

Is multi-touch/gestures supported on all smartphone browsers (Android and iOS)?

Background: My website has a page where I need my users/customers to draw a model of their design. For this, I am planning to create a very simple SVG-based drawing tool using HTML5-Javascript. I ...
2
votes
1answer
761 views

How to detect two-finger tap in Android?

I need to detect two-finger tap in an Android app I'm working on. I'm also using ScaleGestureDetector and GestureDetector to detect tap, double-tap, long press and scale. In my onTouchEvent method I ...
0
votes
1answer
209 views

Is there a high level replacement for the WP7 Toolkit GestureService?

I currently use the WP7 tookit's GestureService in a few of my applications in order to perform Flick and Pinch/Zoom gestures on Silverlight UI elements. However, seeing that the service has been ...
2
votes
2answers
3k views

How to enable multi touch gesture in phonegap android?

I have come across a strange problem. I am showing an image within my android application. And I want to enable multi-touch gesture but it is not working. I have found that in samsung galaxy it ...
0
votes
1answer
453 views

How can I allow multiple long-press gestures simultaneously on an iPad?

I currently have a few drag-and-drop'able layers linked to UILabels. I have a LongPressRecognizer picking up long-presses on the labels, and moving the layers with the labels being dragged around. ...
0
votes
1answer
253 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 ...
0
votes
1answer
1k views

Custom multi-touch gestures in Javascript

I'm developing a web-app and want to use JavaScript and HTML5 for gestures. I came across this -http://scripty2.com/demos/touch/ , but for this we need Starlight browser ...
0
votes
1answer
322 views

How are gestures implemented in Surface SDK?

I wonder how gestures like move, scale, rotate are implemented in Surface SDK. Do you need to listen to specific events? Do they provide scale/rotate center point? Do they feel natural? (where natural ...
3
votes
1answer
430 views

How do multi-touch gestures in iOS behave if more than 2 fingers are involved?

I'm developing a multi-touch library for Flash and not to reinvent all the wheels I try to check how other developers code similar stuff. One of the biggest problems is gestures with multiple fingers ...
3
votes
2answers
1k views

Multi-touch gestures on Silverlight 4 and Windows Phone 7

Question: What is the best cross platform multitouch approach for Silverlight? Background: I’ve been developing large SL4 applications and have now started porting them to WP7. The porting ...
1
vote
2answers
1k views

dual mouse input - simulate multi-touch

Ive always thought this would be cool, and now the OS technology seems it could really make it easy to implement- Is there a known/easy way to hook up dual mice as inputs to a multi-touch enabled OS, ...
1
vote
2answers
859 views

How is google maps (web app) scaling so smooth on the iphone/ipad with the gesture/pinch?

If you have used the Google Maps web app on your iphone or ipad you know what i am talking about. You can't see my fingers in this screen grab, but this is mid-pinch (if you will) zooming out. The ...
5
votes
1answer
3k views

iPad Gesture Recognizer - Delayed Response

In my app I have added the new Gesture Recognizers that are available in the 3.2 SDK. Everything appears to be working correctly and the response time on the screen been very fast. But for some ...
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 ...
0
votes
1answer
628 views

Windows Tablet Event - disable Hold Through gesture

I've been trying to implement a long-press feature on a Tablet PC (Windows 7). The problem is I don't get the MouseDown event when touching the tablet (touch and wait). I do get a MouseDown event ...
0
votes
1answer
627 views

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?