Multi-touch in HCI: Bill Buxton

Bill Buxton is the absolute expert for touch-related human computer interaction research. Bill Buxton’s impressive amount of publications has started around 30 years ago and have never ceased since then. Among other things he is a Principal Researcher at Microsoft and participates in the Microsoft Surface research. I especially like his research work about two-handed …

Google Maps Multi-touch Actionscript Code [Update_3]

After I published my youtube video on the Google Maps multi-touch app I have had some demands for the source code of this Google Maps multi-touch Flash application. Hence, I have decided to make the source code of it publicly available on Google Code. You will find the sources on the mapstouch Google Code download …

Google Maps Multi-touch App

I’ve built a small Google Maps multi-touch app with Flex and Flash over the last days: It uses the Google Maps Flash API and the TUIO Actionscript classes and the Touchlib from the Nuigroup. The red stuff on the screen means that i am using the debug mode of Google Maps for Flash. That is …

A Multi-Touch Photo Browsing Application (with Source Code)

The Touchlib offers lots of Flash related possibilities to build your own multi-touch applications. There are even some demo applications included in the package in the code version of the Touchlib. Thus I took a demo photo application from them and replaced their Flickr images with mine and exchanged the whole mechanism for dragging and …

Embed Illustrator Vector Graphics In Actionscript 3

There’s a really cool article about the embedding of resources in Actionscript 3 in Keith Peters bit-101 blog. If you’re using his technique you can get rid of that awkward Flash GUI and just develop Flash applications with Eclipse in combination with the Flex Builder plugin by Adobe (currently you can obtain a free license …

TimeTube Article in the G.I.T. Laboratory Journal

Our article about the project TimeTube we’ve been developing since last year has been published by the G.I.T Laboratory Journal Europe in the current Laboratory Journal issue 7-8/2008. Feel free to download the article TimeTube – Assist Scientists to Enhance Laboratory Scheduling in PDF format.

My 2nd (so far unfinished) multi-touch table

(Update: The follow-up article can be found here.) Fortunately I’ve got some money from the Computer Science faculty of the Wiesbaden University of Applied Sciences to build another (better) multi-touch table. I decided to try Tim Roth’s DSI technology. By using this technology it should be possible to use objects on the table that can …

Flash Actionscript 3.0 drawString equivalent [Update]

I’m coming from the Java world where you could ‘just’ draw Strings. However, in Flash it’s not as easy to actually draw a String on the screen. For that purpose I use following code: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 …