Skip to main content
Participating Frequently
August 16, 2011
Question

Multi-Touch Issue

  • August 16, 2011
  • 1 reply
  • 395 views

Not sure if this is possible in mobile Flex but I am creating an app in which the thumb will always be in contact with the screen (dragging an object around) but I also need to tap another object with the other thumb. I can drag but can't get any event to fire on the button UNTIL i release the first object. Is there an easy way around this with guesture support?

This topic has been closed for replies.

1 reply

August 16, 2011

Are you using mouse inputs or multitouch inputs. If its mouse events then you only have one at a time since with a mouse you only have the one pointer but with multi touch events it recognizes each finger as a separate input point and can do different things with them.

Pahup
Adobe Employee
Adobe Employee
August 17, 2011

Yes, please use Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;

Please refer TouchExample2.as @ http://help.adobe.com/en_US/FlashPlatform/beta/reference/actionscript/3/flash/events/TouchEvent.html

-Pahup