Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm aware of MT4j and the Windows 7 Multitouch Interop Library, but neither of these seem to be what I'm looking for: the MT4j code is pretty terrible and not well-documented, and the Win7 library seems to be a .NET assembly (and thus not able to be used natively by Java). Is there anyway to be able to get WM_TOUCH messages in Java? Or is it possible to actually use the Win 7 interop library from within Java?

share|improve this question

2 Answers

up vote 1 down vote accepted

Sorry, but you can't. There's only a kind of workaround...

Touch2TUIO is a open source command line tool, that can native Windows 7 touch messages translate/forward to the TUIO Protocol (so you could use them in Java or any other language). Still in development, but on most hardware already usable (and its open source - so everyone is free to make changes/improvements to it). It's not exactly, what you're looking for, but maybe the only solution now...

Touch2TUIO: http://dm.tzi.de/research/hci/touch2tuio/

share|improve this answer
Thanks, I'll take a look into this! – Mark LeMoine Dec 17 '10 at 0:42

What do you mean by pretty horribly code and not well documented? I built a huge MT4J application and have used the API of the MT4J latest versions and have had no problem with it.

Perhaps you could suggest some improvements on the documentation and/or API of that library. From my own experience I can tell you it's a worth multitouch framework to try. In the Java world is the only one I know of by the way.

share|improve this answer
Hmm? But not with the mentioned Windows 7 Touchevents, or didn't you? – Constantin Feb 2 '11 at 7:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.