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...
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...
Can you use the magic mouse to use the iphone simulator, and get like more than just two fingers on the phone simulator?
...
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 ?
...
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.
...
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...
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...
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...
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...
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?
...
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...
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...
I wanna to simulate touch event in Windows / Mac OS X or Linux (OS is not critical).
...
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
...
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...
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
...
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...
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...
Anyone know how to detect two fingers tap on iPhone?
Thanks in advance!
...
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...