Midi parameters for individual instruments in a Multi

Options
Heyman!23
Heyman!23 Member Posts: 1 Newcomer

Hello, Is there a way to disable the influence of the Komplete Kontrol 61 Keyboard modulation wheel for ONLY ONE instrument in a Multi? I'm trying to use the Baritone Saxophone from Factory Library 2 but can't seem to 'switch off' the tremolo. Thanks

Best Answer

  • EvilDragon
    EvilDragon Moderator Posts: 1,023 mod
    Answer ✓
    Options

    A multiscript can be used to block certain MIDI messages that come over a specific channel or channels.

    on midi_in
        if ($MIDI_CHANNEL = 1) { this is MIDI channel 2, change as needed}
            if ($MIDI_COMMAND = $MIDI_COMMAND_CC and $MIDI_BYTE_1 = 1) { this is MIDI CC number, change as needed }
                ignore_midi
            end if
        end if
    end if
    

Answers

  • Sunborn
    Sunborn NKS User Library Mod Posts: 2,376 mod
    edited June 2023
    Options

    I do not think so. Modulation Wheel control, is a global parameter which affects the entire instrument. Yet, i am not a Kontakt expert, it might exist a workaround for this.

  • Uwe303
    Uwe303 Moderator Posts: 3,109 mod
    Options

    Hello,

    it could work with a script but then you would have to insert it into every instrument where you want to block MW data. @EvilDragon maybe can help he knows KSP inside out. I will have a look if I'm back at my pc.

  • EvilDragon
    EvilDragon Moderator Posts: 1,023 mod
    Answer ✓
    Options

    A multiscript can be used to block certain MIDI messages that come over a specific channel or channels.

    on midi_in
        if ($MIDI_CHANNEL = 1) { this is MIDI channel 2, change as needed}
            if ($MIDI_COMMAND = $MIDI_COMMAND_CC and $MIDI_BYTE_1 = 1) { this is MIDI CC number, change as needed }
                ignore_midi
            end if
        end if
    end if
    
Back To Top