What it does
StartScreenRecording makes something happen at once: it starts. It takes szFilename (a string) and microphone (an integer), and returns nothing.
Syntax
StartScreenRecording(szFilename string, microphone integer)Parameters
| Name | Type |
|---|---|
| szFilename | string |
| microphone | integer |
Every form returns
nothing
Example · generated
StartScreenRecording("assets/clip.mp4", 1)DO Sync()LOOPStartScreenRecording is called with values of the types its signature asks for. The DO … LOOP is not decoration: a classic BASIC program ends the moment it runs out of lines, and Sync() is what draws the frame.