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

  • 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 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 )
Zobrazit stránku 30
1 2 ... 26 27 28 29 30 31 32 33 34 35 36 37 38

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

Žádné komentáře