How to Configure Multi-Touch Redirection in Thinfinity® Workspace

How to Configure Multi-Touch Redirection in Thinfinity® Workspace

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.

Locate the Configuration File

The configuration for multi-touch redirection is controlled in the web.settings.js file:
  1. Navigate to the installation directory:

    C:\Program Files\Thinfinity\Workspace\

  2. Open the 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.
             }
     }

    NotesWhen set to true, canChangeTouchMode allows users to toggle between absolute and relative touch modes. Gestures are enabled, but specific actions can be customized.


  3. 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']
            }],
     }


  4. 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 Services Manager on Windows Task Manager, and locating the ThinfinitySvcMgr service. Right-click on it and restart it.


Test the Multi-Touch Functionality

  1. Clientless Mode: Open the remote session in an HTML5-supported browser and test gestures like pinch-to-zoom and swipe.
  2. Client-Based Mode: Use the Thinfinity native iOS application to verify multi-touch 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 ...
    • Theme customization API in Thinfinity® Workspace

      Product: Thinfinity Workspace Version: 7 and later Introduction The theme customization API in Thinfinity Workspace allows users to personalize the visual style of the entire interface. Out of the box, any user will be able to choose the color layout ...
    • 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 Redirect Video and Audio over RDP Connections with Thinfinity Workspace

      Product: Thinfinity Workspace Versions: 7.0.1.102 and later This document will walk you through the steps of using Thinfinity Workspace to redirect video and audio over Remote Desktop Protocol (RDP) connections. Enabling video and audio transmission ...
    • 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 ...