February 15, 201312 yr i have buttons on a "splash" layout that directs users to specific layouts. each user has their own set of permissions. some permissions prevent users from viewing certain layouts - however if they click a button to access that particular layout, the NO ACCESS greyed out screen appears, and the application needs re-starting to use. i have written a script to verify the permissions to prevent this, however I want to clarify what permissions can access the layout: If [get(accountprivilagesetname) = "[Full Access]" or "[Privilege Set A]"] go to layout... else exit script the first privilege set is recognized by filemaker and permits the user to go to the layout, however, if the user is logged in under the "[privilege set A]" privileges, the script exits as the ELSE function indicates. what is the best way to clarify more than one privilege set as it seems the OR function doesn't work?
February 15, 201312 yr If [get(accountprivilagesetname) = "[Full Access]" or get(accountprivilagesetname)="Privilege Set A" )
February 15, 201312 yr You might also look at the Get(LayoutAccess) and Get(RecordAccess) functions to assist you in managing what your users can do in the file. Steven
Create an account or sign in to comment