Multi-touch redirection is a feature in Workspace that allows users to interact with remote desktops using multi-touch gestures such as zoom, swipe, and pinch. This feature is enabled by default and works seamlessly for both iOS and Android devices, providing an intuitive and responsive user experience. Follow the steps below to verify or customize multi-touch settings.
The configuration for multi-touch redirection is controlled in the web.settings.js file:
C:\Program Files\Thinfinity\Workspace\web.settings.js file in a text editor.To edit the configuration, locate and uncomment the following section in the file.
mobile: {
smartSizing: false // Enables screen smart sizing.
canChangeTouchMode: true, // Enables the ability to change the touch mode.
gestures: [
// Configure gestures here if needed
],
shortcuts: {
CtrlAltDel: true // Enables the toolbar shortcut for CTRL-ALT-DELETE.
}
}When set to true, canChangeTouchMode allows users to toggle between absolute and relative touch modes. Gestures are enabled, but specific actions can be customized.
Example of adding a custom two-finger zoom gesture:
mobile: {
gestures: [{
'type': 'PINCH',
'pointers': 2,
'action': ['zoom']
}],
}web.settings.js file to submit the changes.Restart the Thinfinity Workspace service for the new configuration to take effect by opening the Services Manager on Windows Task Manager, and locating the ThinfinitySvcMgr service. Right-click on it and restart it.
| Gesture | Action | Description |
|---|---|---|
| Tap | Single-click | Briefly touch the surface with a fingertip. |
| Double-tap | Double-click | Rapidly touch the surface twice with a fingertip. |
| Press and Drag | Drag and Drop | Move a finger over the surface without losing contact. |
| Spread | Zoom in | Use two fingers to stretch apart and zoom in. |
| Pinch | Zoom out | Use two fingers to pinch together and zoom out. |
| Double Finger Drag | Scroll | Move two fingers together to scroll the screen when magnified. |