All functions Mac OS X Windows Crossplatform Components New in version: 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 2.0
Component: Screenshot
Mac OS X: Works
Windows: Works
MBS( "Screen.Height" ; ScreenID )
Parameter | Description | Example value |
---|---|---|
ScreenID | The zero based index of the screen to to target. | 0 |
FileMaker’s built in functions for returning related information only works for the "desktop" and may include more than one screen in a Multiple monitor situation. Also Get(WindowDesktopHeight) returns the height of the desktop not the height of the monitor. The desktop height does not include the height of the menu. Unlimited monitors are supported on Macs. Only one monitor is supported on PCs.
Get the first screen's co-ordinates
MBS( "Screen.Left" ; 0 ) & "' " &
MBS( "Screen.Top" ; 0 ) & "' " &
MBS( "Screen.Width" ; 0 ) & "' " &
MBS( "Screen.Height" ; 0 )
Feedback: Report problem or ask question.