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)

learn more… | top users | synonyms

0
votes
0answers
12 views

How to add multitouch support for ChromeEmbeddedFramework browser on windows 8?

I 've develooped a basic custom browser with CEF (Chromium Embedded Framework) Python . This browser is meant to run into an interactive kiosk with windows 8. It has a multi-touch screen for all user ...
0
votes
1answer
21 views

Do touch events work with SVG?

I've been playing around a bit with SVG+ECMAScript, and I find it impressive. I've recently found out that (X)HTML5 has a ‘touch events’ specification, so that browsers such as the Android browser, ...
3
votes
2answers
46 views

Android : How to Allow Only One Touch?

How to allow only one touch on Android? I don't want to support multi-touch and I want my app to discard other touches if my one of my fingers is already touching the screen. It's like using exclusive ...
0
votes
0answers
13 views

Touch Table Web Apps

I'm building a touch table application, and I want to use HTML5 technology, in the interest of creating something that's cross-platform, moving away from Flash, as well as learning HTML5 technology in ...
0
votes
1answer
25 views

Unified and transparent pointer events in jQuery

I have a bootstrap .btn that I want to toggle with the mouse click. The problem is that the response is way too slow on tablets, since the click arrives 300 ms after the touchstart in mobile browsers. ...
0
votes
0answers
9 views

Preventing default windows 7 multi touch event from firing with javascript

I'm currently working on an html5/javascript kiosk web app that will run full screen on a windows 7 PC with a 42 inch touch display. In the app I have a page where the user can pinch zoom an image in ...
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 ...
1
vote
1answer
20 views

WebKit: How to determine what elements are under a touch while dragging an animating div

I'm trying to implement drag and drop for Mobile Safari. Basically I want to drag a div via touch while it plays a looping CSS animation. I also want to determine when it's above a drop target and do ...
0
votes
0answers
25 views

MotionEvent.obtain() Multitouch Event for API < 9

I'm trying to simulate multitouch events using MotionEvent.obtain(). This can be done using methods introduced in API9 and API14: API 9: public static MotionEvent obtain (long downTime, long ...
0
votes
1answer
43 views

multiTouch android | getting Action of each touch point

I am trying to handle multiTouch in android, my plan is to use 2 fingers in the app. I know how to use one touch point, but I am not sure about how to use more than one touch point. Here is my code, ...
0
votes
1answer
28 views

Simulate Multitouch Event In Android Programmatically For Testing

I need to simulate multitouch events (zoom, pan, etc) to use in instrumentation tests of the Android app. One way would be to manually generate corresponding sequence of MotionEvents that imitate real ...
0
votes
1answer
17 views

Where to find com.apple.eawt.event* class reference

I have been working on integrating the LeapMotion (leapmotion.com) with OS X. I believe this is achievable via the use of the native LeapMotion API as well as the apple GestureUtilities package ...
0
votes
4answers
32 views

Stop users from pressing two buttons at once?

Is there a way to only register a single button press? At the moment in my activity I have two buttons that each start another activity - at the moment if I press them at the same time both activities ...
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 ...
0
votes
0answers
28 views

Input data cannot be processed in the non-chronological order - Error being thrown from WinRT

I am currently using the below code for detecting gestures var inputManager = (function () { var that = {}; var gr; var canvas; var manipulating = false; ...
0
votes
0answers
22 views

drag and drop song name from list to button in android

I am making a DJ app for my own learning purposes. I have two ImageButtons (A and B) which toggle to lit up and unlit using a graphic when you click the onclicklistened. they look like record players ...
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 ?
2
votes
1answer
21 views

The difference of using MotionEvent.getAction() method

What is the difference between two apporoach below? int action1 = event.getAction() & MotionEvent.ACTION_MASK; int action2 = event.getAction();
0
votes
0answers
3 views

Javascript multitouch as independent events

I have to make 2 independent drag events at the same time in JavaScript. If I register touch events ( touchstart, touchmove, touchend ) for each 2 divs (#divA, #divB) and i start draging on #divA, ...
0
votes
1answer
21 views

Is multi-touch concurrent programming?

Like I wrote in the title, i didn't understand the onTouch() methods behavior when it comes to multi-touch. So i thought that it can be an example of concurrent programming. I f it is not can you tell ...
-2
votes
0answers
15 views

How should I handle two pointers, during multitouch?

:) I'm playing with multitouch on android. I want two circles to follow my fingers. But only one of the circles does what I want. What should I do in the case MotionEvent.ACTION_DOWN, to separate the ...
3
votes
0answers
75 views

Improve multi touch performance on Android browsers

I need to implement pinch to zoom and drag to pan over an SVG. This SVG gets shown at 480*480 pixels, but its real size is 1920*1920 pixels. I went with HammerJS, and listened for pinch and drag: ...
0
votes
1answer
75 views

How to draw with multiple fingers in canvas

I am using android Canvas class from creating drawing application. This is my first attempt to work with Canvas class. So far the code that i used is working fine and the drawing is working fine. But ...
1
vote
1answer
16 views

Sliding ScatterViewItems from table to close

currently I'm developing a project for the Pixelsense/Surface 2.0/Sur40. I'm wondering if it is possible to slide ScatterViewItems from the table. For me it is the most intuitive way to close an item. ...
0
votes
0answers
35 views

Detecting tap of two fingers [iOS]

I have a game where player jumps when two taps occurred. The problem is that I can't disable the ability to tap with two fingers and you can trick with double jump by double tap with two fingers. ...
1
vote
0answers
42 views

Enable multitouch on all Elements windows phone

How can I enable multitouch support for all elements in windows phone? So, for example, if had two sliders and couple of buttons, how can I allow all three to be manipulated by different simultanous ...
0
votes
0answers
51 views

Objective-C detect every multitouch

I am working on a game using cocos2d, and I want to call a method every time there is more than one touch detected, and call another method when the multitouch becomes single touch or no touch. The ...
0
votes
0answers
25 views

Multiple taps create index out of bounds exception

I am adapting Mario Zechner's Beginning Android Games framework to create a toddler color learning app. In the final phases of testing I have found that if the user presses and releases two different ...
0
votes
0answers
25 views

Finding Images after canvas translation with Multitouch Controller

I am using the Multitouch Controller made by Luke Hutchison found here https://code.google.com/p/android-multitouch-controller/ My problem is this. I can place an image onto the canvas. I can ...
0
votes
3answers
74 views

How to drag multiple shape on canvas? [kineticjs]

For example: one tap is moving a shape. Another tap is moving another shape at same time.
0
votes
0answers
24 views

Multiple users interacting in QtQuick2

Does anyone knows if it is possible to have two interactive Flickable items simultaneously? In other words, I want two users interacting each with one ListView in a multi-touch screen. It seems that ...
0
votes
0answers
46 views

WPF Multitouch simulation: Why TouchDevice.Id is 258?

I follow these steps to download Multi-Touch Vista and configure it to simulate finger touch using multiple mice. It works well, now I have two red dots on screen, each controlled by a mouse. And I ...
0
votes
1answer
68 views

How to determine primary swipe direction (using MultiTouch) in AS3?

I'm trying to implement very simple swipe recognition on a touch screen using AS3. I just need to know whether the swipe is to the left, right, top, or bottom. First question: would this be easier ...
0
votes
0answers
18 views

Touchend and Sliding Finger Off Button

I've got a volume buttons that bind to the the touchstart and mousedown events, and the touchend and mouseup events (I've also tried touchleave and touchcancel). When the user has their finger held ...
0
votes
0answers
79 views

What Android Events Are Triggered from Touchpad on Logitech K400?

I know that my Logitech K400 keyboard with touchpad can cause some Android apps (like the Dolphin Browser) to zoom in/out when I hold CTRL and swipe with 2 fingers up or down. I have written an app ...
1
vote
0answers
61 views

cross platform multitouch and graphics in Java with libgdx and mt4j

I have a cross platform application built with libgdx. The software is often used in conjunction with large touchscreens (like the microsoft coffee table thingy) with Windows (7 & 8) and MacOS. ...
1
vote
0answers
48 views

Receive data of multitouch events from laptop's touchpad

I'm working on writing a program that controls Android device (via USB cable and the Android-SDK toolset). The program is written in Java, and is addressed for Windows platforms. The idea is that I ...
1
vote
1answer
48 views

Multiple ACTION_DOWN events do the same

I want to make 3 buttons touchable at once so you can touch a button without removing the finger from another one. I did it so far with ACTION_DOWN, ACTION_POINTER_1_DOWN and ACTION_POINTER_2_DOWN in ...
0
votes
1answer
202 views

jQuery mobile: change font size on pinch-in/pinch-out?

I'm writing a web document reader with JQM. I don't want my users to continuously scroll right-left when reading, so my viewport is: <META NAME='viewport' CONTENT='width=device-width; ...
0
votes
1answer
88 views

How should I set up my touch controls in starling?

I am developing a game in starling that has two controls. One will be the users left thumb touching anywhere on the left side of the screen, which drags the character up and down the y axis. The other ...
0
votes
0answers
101 views

Pinch to zoom in Visual Studio 2012 IDE (code view) not working?

so I mean just the code viewer window thing! (even spent 15 minutes trying to figure out what that window is called, no result) NOT in designer view, simulation etc. Perhaps best illustrated by an ...
0
votes
1answer
41 views

Java - Working with Multitouch

I want to develop a multitouch application for my convertible with Java. I could only find the MT4j (MultiTouch 4 Java) framework, but I would like to develop the multitouch structure aso on my own. ...
2
votes
1answer
121 views

Large screen multi touch interactive application design [closed]

I am supposed to design an application for a large multitouch screen. By large, i mean newscaster large (around 55 inches and above). The application is an interactive map. My questions is: which ...
0
votes
0answers
146 views

Cocos2d-x multi-touch acting strange with iOS

CCSetIterator iter = touches->begin(); for (; iter != touches->end(); iter++) { CCTouch* touchPoint = (CCTouch*)(*iter); ...
1
vote
1answer
69 views

2 stacked multiple touch enabled CCLayers

I have two cclayers. The top cclayer has several objects (derived from ccnode) and is multitouch enabled. I use cctouchesbegan to detect touches on these objects. that all works fine. but below the ...
1
vote
1answer
56 views

Perform calculations in a UIView subclass breaks the MVC's design pattern?

I have a UIView subclass in which I override the multi-touch handling methods. My question is, if I perform calculations with the given touches on that view, it breaks the Model View Controller design ...
0
votes
1answer
75 views

ByteTag recognition is unstable on SUR40 (surface 2.0 sdk)

We are developing applications on a touch table surface SUR40 with XNA and WPF, but vendor's provided byte-tags which are printed have not worked well on the surface. The detail is Tags are blinking ...
0
votes
0answers
90 views

dispatch touch event to new activity

I have an activity A inside that two imageViews(like 2 pages of the book). I have implemented onTouchListner for both imageviews and inside onTouch method if user perform pinch-to-zoom i am starting a ...
2
votes
1answer
80 views

PyGame Multitouch Support (Windows 8)

Is there any way of getting Windows 8 multitouch events to work with PyGame? Is there any way at all of accessing touch events from within Python in Windows?
0
votes
1answer
98 views

How do i automate testing of touch and multi-touch based web applications using selenium web driver?

I am writing some automated tests using cucumber and selenium for various web applications. Currently this is working well, however we are about to start making mobile specific versions of our pages. ...

1 2 3 4 5 15