Difference between revisions of "Luamidi:noteOff"
From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
Line 7: | Line 7: | ||
Sends a Note Off message to chosen OUT port. | Sends a Note Off message to chosen OUT port. | ||
− | < | + | <syntaxhighlight lang="lua"> |
luamidi.noteOn(i, n, ch) | luamidi.noteOn(i, n, ch) | ||
</source> | </source> |
Revision as of 14:28, 13 July 2023
Available since: Gideros 2018.12
Class: Lua Midi
Description
Sends a Note Off message to chosen OUT port.
<syntaxhighlight lang="lua"> luamidi.noteOn(i, n, ch) </source>
Sends a note off message to OUT port i with note n. You can also optionally set the channel (ch). This is essentially equivalent to luamidi.sendMessage(144, i, n, 0, ch).