Flash CS5 iPhone multi-touch
Posted in Flash by The Flash Blog on the 01-12-2010Here is a very quick video showing the new multi-touch APIs in an iPhone application that was created from Flash CS5. The code needed is shown below. Now I’m off to Brasil!
1 2 3 4 5 6 7 | photo.addEventListener(TransformGestureEvent.GESTURE_ZOOM, onZoom); function onZoom(e:TransformGestureEvent):void { photo.scaleX *= e.scaleX; photo.scaleY *= e.scaleY; } |
Lee
Read full article

Responses to “Flash CS5 iPhone multi-touch”