Ballycroy Posted July 19, 2007 Posted July 19, 2007 I wonder if this is possible: I have a image db solution that is used on Mac and PC. Management want users to login automatically. Is it possible to send the user to a Mac or PC specific layout based on the system platform. Or hide layouts based on which platform the db is on. I know how to do this with specific accounts and have the user login.
David Jondreau Posted July 19, 2007 Posted July 19, 2007 (edited) Edited July 19, 2007 by Guest Realized I mixed calc and scripting...Follow Genx's advice.
Genx Posted July 19, 2007 Posted July 19, 2007 That should really be either: Go To Layout[ By calculation ... ] Where the calc is: Case( Abs(Get(SystemPlatform)) = 1; "MacLayout" ; "WinLayout" ) Or alternatively: If[Abs(Get(SystemPlatform)) = 1] Go To Layout[MacLayout] Else Go To Layout[WinLayout] End If
Recommended Posts
This topic is 6338 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