tallboy755 Posted November 3, 2003 Posted November 3, 2003 Hello ... Need a little help. I want an open script to go to one of three layouts depending on which password is entered. Is this possible?
McCormick Posted November 3, 2003 Posted November 3, 2003 There may be a better way to do this, but this works: Base the script on groups. Create three groups, and assign all the passwords as appropriate to determine who is in which group. Have an Open Script (select it in Edit:Preferences:Document) something like this: ------------------- If (PatternCount( Status( CurrentGroups), "MasterGroup") > 0) Go To Layout [Master Layout] Else If (PatternCount( Status( CurrentGroups), "AdvancedGroup") > 0) Go To Layout [Advanced Layout] Else Go To Layout [Guest Layout] End If End If ------------------- Or, of course, include that piece in your existing Open script.
Anatoli Posted November 3, 2003 Posted November 3, 2003 You can test for "Status ( CurrentUserCount )" if it contains group of users and then you go to appropriate layout.
Recommended Posts
This topic is 7694 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now