Algosim documentation: NoteSilence

NoteSilence

Turns off all currently playing MIDI notes.

Syntax

Description

NoteSilence() immediately turns off all currently playing MIDI notes.

Examples

SetInstrument("Acoustic Bass");
NoteOn(60, 75);
sleep(.5);
NoteOn(70, 75);
sleep(.5);
NoteOn(80, 75);
sleep(1.5);
NoteSilence();

See also