Search found 1 match

by robertmartin1
Sat Apr 06, 2013 2:19 pm
Forum: Mac OS
Topic: Multitouch support on OS X
Replies: 4
Views: 5684

Re: Multitouch support on OS X

If you want to implement the code for multi-touch programming then you have to define several condition and implement each condition using if---else statements like a sample code for left and right movement could be:
if( right-drag || left-swipe ){
/*run code*/
}
else if( left-drag || right-swipe ...