1
vote
1answer
206 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
28 views

Get device name from MTDeviceRef

I'm using the private Multitouch framework to get a list of MT devices. Now I'd like to retrieve the user's name for that device (by default something like "Apple Wireless Trackpad, although this can ...
0
votes
0answers
96 views

How to addGlobalMonitorForEventsMatchingMask for multi-touch gestures?

Everything works great - locally - with... [NSEvent addLocalMonitorForEventsMatchingMask:NSEventMaskRotate handler:^(NSEvent *e) { ...
1
vote
0answers
87 views

Is it possible for an Adobe AIR app to receive touch events in OS X?

I'm working on software in OS X that receives touches from a multi-touch device and posts them to the system for applications to process. I was hoping that it would be possible to support Adobe AIR ...
0
votes
1answer
324 views

How do I tell what type of multitouch device an MTDeviceRef is

I'm trying to write a library to get the touch events from an Apple Magic Mouse. I'm using the private framework MultitouchSupport.framework and use the code below to get a list of multitouch ...
0
votes
2answers
364 views

Qt multi-touch events not working with magic trackpad in Mac OS X

I just recently started working with Qt 4.7.4 64-bit in order to make some cross-platform multi-touch applications. However, I can’t get Qt's touch events working in Mac OS X. When I build and run my ...
5
votes
0answers
652 views

Generate and post Multitouch-Events in OS X to control the mac using an external camera

I am currently working on a research project for my university. The goal is to control a Mac using the Microsoft Kinect camera. Another student is writing the Kinect driver (which will be mounted ...
6
votes
3answers
2k views

Multi-touch gestures in webapp on desktop

I'm developing online map(like google maps) of cool fantasy world. I'm also use OS X on my main computer. Since OS X(especially Lion) are focused on different multi-touch gestures because almost of ...
4
votes
1answer
540 views

Objective-C. How do I write to an NSObject from within a C function that doesn't see Obj-C variables?

I'm trying to get some code going that lets me display raw trackpad data from my macbook pro, like the app FingerMgmt. Unfortunately, no one seems to have the source for FingerMgmt. I did find 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 ...
2
votes
2answers
961 views

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).
1
vote
2answers
2k views

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 ...
0
votes
1answer
326 views

How to send multi-touch events from one Cocoa App to another?

Is there a way to send a multi-touch event (something like NSEventTypeMagnify) from one cocoa app to another, so that I could for instance tell iPhoto to zoom into a picture?
1
vote
1answer
808 views

How does multitouch capability look to the API? (IPhone/OS X)

I don't have an IPhone and don't really want to pay $130 a month for a cell phone. (I leave mine in the car most of the time, sometimes the entire weekend.) But I covet the technology as a mobile ...
9
votes
2answers
2k views

Capturing all multitouch trackpad input in Cocoa

Using touchesBeganWithEvent, touchesEndedWithEvent, etc you can get the touch data from the multitouch trackpad, but is there a way to block that touch data from moving the mouse/activating the ...
0
votes
1answer
316 views

Detecting multitouch iPhone-like “tap” on MacBookPro

After a period of iPhone work, I'm once again working on normal Cocoa apps on my MBP and I miss the "tap" gesture. I know that I can turn on the incredibly annoying "Tap to Click", feature in the ...
0
votes
1answer
632 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?