November 3, 200322 yr 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?
November 3, 200322 yr 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.
November 3, 200322 yr You can test for "Status ( CurrentUserCount )" if it contains group of users and then you go to appropriate layout.
Create an account or sign in to comment