multitouch

Android - How do I get raw touch screen information?

Hi, I'm working on a painting application for Android and I'd like to use raw data from the device's touch screen to adjust the user's paint brush as they draw. I've seen other apps for Android (iSteam, for example) where the size of the brush is based on the size of your fingerprint on the screen. As far as painting apps go, that would...

Android Multitouch - Possible to test in emulator?

Hey everyone, I recently discovered that the Android 2.0 SDK supports multitouch through new functions in the MotionEvent class. You can specify a pointer index when retrieving touch properties, and in cases where multiple fingers are on the screen there should be multiple pointers provided. Unfortunately, I only have a G1 to test on a...

I am thinking about buying the magic mouse but can I use it's multitouch capabilities for the iphone simulator

Can you use the magic mouse to use the iphone simulator, and get like more than just two fingers on the phone simulator? ...

How to develop a 3D application with multi touch support?

Is it possible to develop an 3D application in .Net (XNA or WPF) that would take advantage of Windows 7's multi touch support. Is it possible to do so ? Where is the best place to start ? ...

Is it possible to get more low level info about touch events?

The UITouch object only gives you the location of the touch. Is it possible to find out about the size and the shape of the touch(the part of your finger that meets the screen) as well? Update: non-iphone info, but the Android API seems to give the size. ...

How can I learn a multitouch screen's communication protocol and write a C# application for it?

I have got a monitor with multitouch overlay on top of it. It works fine with Windows 7 but I want to write a multitouch application in C# for Windows XP which doesn't support touch feature out of the box. There is no documentation whatsoever and I emailed the manufacturer but never got a reply. However the device works with Google Ear...

Flash XML socket choking

I'm trying to work out some kinks in a multitouch application I've built. It uses flosc to communicate with a xml socket server that sends the multitouch events. This all works fine and dandy for most of the time. But if I'm mean and flood it with multitouch events Flash can't keep up with parsing the input, and the socket just keeps...

Windows Tablet Event - disable Hold Through gesture

Hi All, 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 only after I move my finger (dragging). And when I pick it up after a while, only then do I get both down and up events at the same ti...

Flash 10.1 Multitouch in OSX

Hey, I want to play with the new multitouch functionality of Flash 10.1 as is demonstrated here: http://blog.martinlegris.com/2009/12/13/tutorial-multi-touch-in-as3-flash-player-101-part-1/#more-186 removeEventListener(Event.ADDED_TO_STAGE, init); // entry point _tf = new TextField(); _tf.width = stage.stageWidth; _tf.height = stage.sta...

.NET 4 - Determine the number of touch points available in Win 7

Windows 7 reports the number of touch points available to the system under the computer properties - is there a way to get that info in .NET 4? ...

Do Android/webOS devices support multi-touch Javascript events?

On iPhone, iPod touch and (presumably) iPad, Apple has multi-touch event handling available via JavaScript in Mobile Safari. I know the Nexus One recently added multi-touch support via an update, and I believe webOS is also multi-touch enabled. Do Android 2.1 and/or webOS have access to multi-touch in the browser, or is this currently ex...

Using multi-touch input in GUI interactivity?

I would like to implement multi-touch in my applications for Windows Mobile. The applications will mostly use it for zoom related actions e.g. two points (touched) moving towards each other while relatively moving towards a certain point will zoom IN to that point, where two touched points moving away from each other will do the exact op...

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). ...

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

Hello, 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 similar low level function for multitouch events? Rok ...

Multiple button presses for Android 2.x

I am relatively new to this still, and I have been developing a small app that would benefit greatly from a user being able to press 2 buttons at one time. What is the best method for achieving this? I dont think that an OnClickListener works like that, and I have seen examples for doing this with an OnTouch event. However, I do not know...

Is there a built in API for handling pinch-zoom functionality in Android

Hi there, I just wanted to know if there is some kind of class to use the multitouch features of android 2.1. Specifically I am trying to implement pinch-zoom and was wondering if I always have to measure the distance between two touch events and calculate the zoom level on my own? Thanks, chris ...

Android 1.5 Multitouch

Hi All, Does anyone know if it's possible to use Multitouch on an Android 1.5 device? I have a HTC Hero, and it's still running 1.5 (HTC have been a little slow on getting the 2.1 ROM out). The Android MotionEvent documentation shows the constants (ACTION_POINTER_1_DOWN, ACTION_POINTER_1_UP.....etc...) I need to implement multitouch a...

Android multi-touch support

Hi, I wonder if is the Android multi-touch support reliable? I've read it suffers from some problems. I also wonder, how can I define custom multi-touch gestures? Like: 3 fingers rotate or 3 fingers stay static and fourth is moving. I've come across some resources (Gestures or MotionEvent on developer.android.com) but nothing states it...

How to detect two fingers tap on iPhone?

Anyone know how to detect two fingers tap on iPhone? Thanks in advance! ...

iPhone multitouch - Some touches dispatch touchesBegan: but not touchesMoved:

I'm developing a multitouch application. One touch is expected to move, and I need to track its position. For all other touches, I need to track their beginnings and endings, but their movement is less critical. Sometimes, when 3 or more touches are active, my UIView does not receive touchesMoved: events for the moving touch. This probl...