When the operator presses a button labeled Main Menu , Log in Dialog comes up. If a correct log in is supplied the operator is directed to a different screen.
by setting a multi-action to the button to bring up the log in dialog and show new screen it does not work, as the screen must only be shown with a successful log in.
I cant seem to find how to make a screen show upon a successful log in , is there away to do this operation via script?
Globals.Security seems to have limited options towards log in attempts / success
Can you please help me get on the right track to solving this problem
Show Specific Screen upon Login
-
- Posts: 3
- Joined: Fri Feb 21, 2014 9:05 am
- Location: Russia
Re: Show Specific Screen upon Login
I think you can add SystemTagCurrentUser to Tags list and add script to ValueChange event.
Code: Select all
if (Globals.Tags.SystemTagCurrentUser.Value == "username")
{
Globals.Screen1.Show();
}