Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
12.2
12.3
12.4
12.5
13.0
13.1
13.2
13.3
13.4
13.5
Statistic
FMM
Blog
Takes a screenshot of the screen indicated by the "ScreenID" parameter.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
Screenshot | 1.0 | ✅ Yes | ✅ Yes | ❌ No | ❌ No | ❌ No |
Parameter | Description | Example |
---|---|---|
ScreenID | Zero Based index of the screens. If blank, then 0 is assumed. Use in range from 0 to MBS( "Screen.Count" )-1. |
0 |
Format | The format of the file (currently only JPEG is supported) | JPEG |
Quality | The quality of the image. From 0 to 100. | 80 |
Filename | The desired file name. The image is not written to disk. This file name is just added to the container for later export. |
MyCoolFile |
Returns the image as a container value so you can assign it to a container.
Capture screen as JPEG:
Let(
[
/*-----------------PARAMETERS--------------------*/
ScreenID = 0;
Format = "JPEG";
Quality = 90;
Filename = "MyCoolFile"
];
/*-------------------FUNCTION----------------------*/
MBS(
"Screenshot";
ScreenID ;
Format ;
Quality ;
Filename
)
)
Put screenshot in field:
Set Variable [ $screenshot ; Value: MBS("Screenshot"; 0; "jpeg"; 90) ]
Set Field [ Contacts::Photo Container ; $screenshot ]
Get screenshot of second screen:
Set Field [ Contacts::Photo Container ; MBS("Screenshot"; 1) ]
This function checks for a license.
Created 18th August 2014, last changed 18th April 2022