How to Configure Multitouch Redirection in Thinfinity® Workspace
Multitouch redirection is a feature in Workspace that allows users to interact with remote desktops using multitouch 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 multitouch settings
Locate the Configuration File
The configuration for multitouch redirection is controlled in the web.settings.js file
- Navigate to the installation directory:
c:\Program Files\Thinfinity\Workspace\
- Open the web.settings.js file in a text editor.
- Locate and uncomment the following section in the file to edit the configuration. By default multitouch functionality is already enabled, but you can configure it, and its gestures.
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.
}
}
canChangeTouchMode: true ensures users can toggle between the absolute and relative touch modes. Gestures are enabled, but specific actions can be customized.
- You can modify or add custom gestures within the gestures array. Use the pre-defined gesture types, directions, and actions.
For example:
Types: TAP, PAN, PRESS, PINCH, SWIPE
Actions: mouseMove, click, zoom, rightClick
Example of adding a custom two-finger zoom gesture:
mobile: {
gestures: [{
'type': 'PINCH', 'pointers': 2, 'action': ['zoom']
}],
}
- Save the web.settings.js file to submit the changes. Restart the Thinfinity Workspace service for the new configuration to take effect by opening the Servicies manager on Windows server, locate the Thinfinity Remote Workspace Service. Right click on it and restart it.
- Open Services on your Windows server.
- Locate Thinfinity Remote Workspace Service.
Test the Multitouch Functionality
- Clientless Mode: Open the remote session in an HTML5-supported browser and test gestures like pinch-to-zoom and swipe.
- Client-Based Mode: Use the Thinfinity Native iOS Application to verify multitouch features on your iPhone or iPad.
Default Gestures Supported
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. |
Related Articles
What's New on Thinfinity Remote Workspace 8
Introduction Welcome to our comprehensive guide to the Thinfinity® Workspace 8. This article will introduce you to the product's groundbreaking features, new connection protocols, and enhanced user experience. Thinfinity Workspace 8 is the epitome of ...
How to Install and Configure Thinfinity Workspace in Agent Mode
Product: Thinfinity Workspace Version: 7 and later Introduction This document will guide you through the process of installing and configuring Thinfinity Workspace in Agent mode. The Workspace Agent provides a convenient solution for establishing ...
How to Configure VirtualUI Sessions
Product: Thinfinity Workspace Versions: 7 and later Introduction Welcome to the VirtualUI Sessions configuration guide for Thinfinity Workspace. This concise guide provides the instructions to ensure the successful configuration of VirtualUI ...
How to Enable H264 in Thinfinity Workspace
Product: Thinfinity Workspace Version: 7 and later Introduction H264 is the most widely used format for efficiently capturing, compressing, and distributing high-quality video content. As such, Thinfinity Workspace must work with H264 to provide a ...
New Theme customization API in Thinfinity® Workspace
Product: Thinfinity Workspace Version: 7 and later Introduction The new theme customization API in Thinfinity Workspace version 7 allows users to personalize the visual style of the entire interface with options such as Light, Dark and Blue themes, ...