July 19, 200718 yr 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.
July 19, 200718 yr Edited July 19, 200718 yr by Guest Realized I mixed calc and scripting...Follow Genx's advice.
July 19, 200718 yr 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
Create an account or sign in to comment