StartScreenRecording

Family: Video · One form

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

NameType
szFilenamestring
microphoneinteger

Every form returns

nothing

Example · generated

StartScreenRecording("assets/clip.mp4", 1)DO  Sync()LOOP

StartScreenRecording 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.

18 commands in Video