Merhaba,
Get ( Device ) veya Get ( ApplicationVersion ) fonksiyonlardan birini kullanarak, FileMaker kullanan cihazınızı temsil eden eden bir değeri geri döndüreblirsiniz.
https://fmhelp.filemaker.com/help/18/fmp/en/index.html#page/FMP_Help/get-device.html
https://fmhelp.filemaker.com/help/18/fmp/en/index.html#page/FMP_Help/get-applicationversion.html
Örnek olarak açılış scriptinizi aşağıdaki gibi düzenleyebilirsiniz.
Set Variable [ $client; Value: Get ( ApplicationVersion ) ]
If [ PatternCount ( $client ; "iPad" ) ]
Go to Layout [ "iPad Layout" ]
Else If [ PatternCount ( $client ; pro )]
Go to Layout [ "Desktop Layout" ]
Else
Go to Layout [ "iPhone Layout" ]
End If
Set Variable [ $client ; Value: Get ( Device ) ]
If [ $client = 3 ]
Go to Layout [ "iPad Layout" ]
Else If [ $client = 4 ]
Go to Layout [ "iPhone Layout" ]
...
End If