Has any-one used Multitouch gestures in FlashLite 4 and Nokia N8?
I test the examples in the Device central and all it works correctly using Multitouch Panel, but when I test the same apps on N8, nothing happens. I am not able to get any of the Muliti-touch gestures working on N8.
Am I missing out on anthing?
Following is the sample code for Zoom gesture:
Code:Multitouch.inputMode = MultitouchInputMode.GESTURE; square_mc.addEventListener(TransformGestureEvent.GESTURE_ZOOM , onZoom); function onZoom(e:TransformGestureEvent):void { square_mc.scaleX *= (e.scaleX+e.scaleY)/2; square_mc.scaleY *= (e.scaleX+e.scaleY)/2; }



