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  

Screen.Width

Component: Screenshot
Mac OS X: Works
Windows: Works

MBS( "Screen.Width" ; ScreenID )

Parameters

Parameter Description Example value
ScreenID The zero based index of the screen to to target. 0

Description

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. Unlimited monitors are supported on Macs. Only one monitor is supported on PCs.

Examples

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.