Skip to content

Utility Actions

Utility actions provide general-purpose functionality in Bitwig Studio. These actions include waiting and showing messages.

Utility Actions List

ActionDescriptionExample
WaitPauses execution for a specified timeWait(1000)
MessageDisplays a message boxMessage("Hello World!")
List CommandsLists all registered commands in the console.List Commands

Utility Actions Example

plaintext
// Wait for 1 second and display a message
Wait(1000)
Message("Hello World!")