TN IT270 How to Prevent Users from Accessing an InTouch Window
Last updated: March 6th, 2025Description
- Author: Benjamin Davis
- Published: March 6th, 2025
Details:
Description
This article from InSource shows...
- Author: Benjamin Davis
- Published: 06/28/2017
- Applies to: InTouch
Details
- In WindowMaker, enable InTouch security by clicking Special | Security | Select Security Type | InTouch
- Configure users as desired.
- Add an On Show script to the window you want to prevent users to access.
IF $AccessLevel < 9999 THEN
Hide "TestWindow";
ENDIF;
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.