Hello, the 2 patches are on a different midi channel, is it possible to control them with the same midi CC ?
Thanks
for ex, I want to be able to control the CC7 slider of both channel with the same fader, depending if I transmit on ch. 4 or 5
All MIDI messages recognised by Kontakt include a channel number, so you can either set instruments to omni (all channel numbers for all controls will then be ignored) or generate a second MIDI message for other instrument. Your DAW might be able to do this, or a simple Kontakt multiscript, something like
on midi_in if ($MIDI_CHANNEL=3 and $MIDI_COMMAND = $MIDI_COMMAND_CC and $MIDI_BYTE_1 =7) set_midi (4,$MIDI_COMMAND_CC,$MIDI_BYTE_1,$MIDI_BYTE_2) end if end on
Close all instruments and click KSP (top R of Kontakt window)>Edit: paste code into text area and click Apply.
Duplicates channel 4 cc#7 messages to channel 5. Note that MIDI channel numbers in KSP code (3 and 4 in lines 2 and 3) are one less than human ones (=4 and 5).