I am actually not getting the difference between MouseEvent.Click event and TouchEvent.Touch"event in action script.
Both are giving same output in touch based system.
I wanted to know that how they differ in processing user events.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Technical: On a touchscreen, TouchEvent is used for handling actions that require more than one finger being pressed on the display simultaneously. MouseEvent is used for handling actions that require only one finger.
Processor: TouchEvent is more processor-intensive than MouseEvent.
So you should use MouseEvent for single-touch actions and use TouchEvent (or GestureEvent) for multitouch actions.