Expert-sleepers Crossfade Loop Synth v3.2.0 Uživatelský manuál Strana 30

  • Stažení
  • Přidat do mých příruček
  • Tisk
  • Strana
    / 38
  • Tabulka s obsahem
  • KNIHY
  • Hodnocené. / 5. Na základě hodnocení zákazníků
Zobrazit stránku 29
end
requestAllCC( handleCC )
requestAllNRPN( function )
Request that the given function be called in response to any MIDI non-registered parame-
ter number (NRPN) event. E.g.
local function handleNRPN( channel, nrpn, value )
!-- do stuff
end
requestAllNRPN( handleNRPN )
requestAllProgramChange( function )
Request that the given function be called in response to any MIDI program change event.
E.g.
local function handlePC( channel, value )
!-- do stuff
end
requestAllProgramChange( handlePC )
requestAllPolyPressure( function )
Request that the given function be called in response to any MIDI poly pressure (poly-
phonic aftertouch) event. E.g.
local function handlePolyPressure( channel, key, value )
!-- do stuff
end
requestAllPolyPressure( handlePolyPressure )
requestNoteOn( note, function )
Request that the given function be called in response to a MIDI note on event matching the
given note number. E.g.
local function handleNoteOn( channel, noteNumber, velocity )
!-- do stuff
end
requestNoteOn( 60, handleNoteOn )
requestNoteOff( note, function )
Request that the given function be called in response to a MIDI note off event matching
the given note number. E.g.
local function handleNoteOff( channel, noteNumber, velocity )
!-- do stuff
end
requestNoteOff( 60, handleNoteOff )
Zobrazit stránku 29
1 2 ... 25 26 27 28 29 30 31 32 33 34 35 36 37 38

Komentáře k této Příručce

Žádné komentáře