Go to: Synopsis. Return value. Flags. MEL examples.
 multiTouch [-gestures boolean] [-trackpad uint]   
multiTouch is undoable, queryable, and NOT editable.
Used to interact with the Gestura (multi-touch) library.None
In query mode, return type is based on queried flag.
| Long name (short name) | Argument types | Properties | ||
|---|---|---|---|---|
| -gestures(-g) | boolean |    | ||
| 
 | ||||
| -trackpad(-t) | uint |    | ||
| 
 | ||||
|  Flag can appear in Create mode of command |  Flag can appear in Edit mode of command | 
|  Flag can appear in Query mode of command |  Flag can be used more than once in a command. | 
// Enable multi-touch gestures. multiTouch -gestures true; // To query whether multi-touch gestures are enabled or not: multiTouch -q -gestures; // Set the trackpad mode to 'Cursor and Multi-touch'. multiTouch -trackpad 3; // To query the trackpad mode: multiTouch -q -trackpad;