Skip to main content
InSource Solutions

TN IT270 How to Prevent Users from Accessing an InTouch Window

Count5.JPGInSource_Logo_Transparent (1).png

 

Description

 

This article from InSource shows...

  • Author: Benjamin Davis
  • Published: 06/28/2017
  • Applies to: InTouch

Details

1. In WindowMaker, enable InTouch security by clicking Special | Security | Select Security Type | InTouch

Capture.png

2. Configure users as desired.

3. Add an On Show script to the window you want to prevent users to access.

IF $AccessLevel < 9999 THEN
    Hide "TestWindow";
ENDIF;
2.png

In this script, we have an On Show Script on a window called TestWindow.

When a user who does not have an access level of 9999 attempts to open TestWindow, it will fail.