Expert-sleepers Crossfade Loop Synth v3.2.0 Manuale Utente Pagina 31

  • Scaricare
  • Aggiungi ai miei manuali
  • Stampa
  • Pagina
    / 38
  • Indice
  • SEGNALIBRI
  • Valutato. / 5. Basato su recensioni clienti
Vedere la pagina 30
requestCC( cc, function )
Request that the given function be called in response to the given MIDI continuous con-
troller (CC) event. E.g.
local function handleCC( channel, cc, value )
!-- do stuff
end
requestCC( 20, handleCC )
requestNRPN( nrpn, function )
Request that the given function be called in response to the given MIDI non-registered pa-
rameter number (NRPN) event. E.g.
local function handleNRPN( channel, nrpn, value )
!-- do stuff
end
requestNRPN( 1000, handleNRPN )
requestProgramChange( pc, function )
Request that the given function be called in response to the given MIDI program change
event. E.g.
local function handlePC( channel, value )
!-- do stuff
end
requestProgramChange( 2, handlePC )
requestPolyPressure( key, function )
Request that the given function be called in response to a MIDI poly pressure (polyphonic
aftertouch) event on the given key. E.g.
local function handlePolyPressure( channel, key, value )
!-- do stuff
end
requestPolyPressure( 60, handlePolyPressure )
requestPitchWheel( function )
Request that the given function be called in response to a MIDI pitch wheel event. NB the
value passed to the handler function is the raw 14 bit MIDI value, not e.g. a normalised
±1.0 value. E.g.
local function handlePitchWheel( channel, value )
!-- do stuff
end
requestPitchWheel( handlePitchWheel )
Vedere la pagina 30
1 2 ... 26 27 28 29 30 31 32 33 34 35 36 37 38

Commenti su questo manuale

Nessun commento