-
Send MIDI to Outside World - Instrument Script Not Sending Correct Note-Off
I have a problem with Kontakt 6.7.1 where instrument scripts are sending note-off messages, to the outside world, for the incoming note instead of the note changed by the script. I've tried a couple factory instrument scripts: Randomize Pitch Change Keys and both exhibit the same incorrect behavior. After some…
-
Microtuning Session Horns Pro
Hi all, I'm trying to get microtuning to work with NI session horns pro. The microtuning script doesn't seem to have any effect, having checked with a tuner plugin. On the other hand, global tuning works fine at resolutions less than one semitone. This is the first time I've used a script in kontakt, but it looks pretty…
-
Excluding certain groups from randomized group play with code
Is it possible to include/exclude groups from the Random group play option with code? I have tried using allow() and disallow() groups. This only mutes them, leaving an empty slot in the randomized play cycle. I want to disable it completely so the pattern is not broken. If that's note possible, can you create/remove the…
-
Seeking Help to sync groups LFOs
Hello ! I'm new to scripting in Kontakt and I have some issues with my groups LFOs. What I want to achieve is the "Marimba Repeat" effect found on the Lowrey TBO organ, where the organ volume is controlled by some sort of a square wave but is out of phase by 180° on certain notes (D,D#,E,G#,A,A#). What I have done is I…
-
Trying to make Kontakt's Microtuning script MIDI-assignable
Hello, I'm checking out Josef Natterer's Microtuning script, included with Kontakt. It allows you detune all C's, C#'s, D's and so on. I'd like to control each of the 12 sliders using MIDI CC. Unfortunately this doesn't seem to work, probably because the 12 sliders are part of a single object, I suspect it's a so called…
-
can I release a free Kontakt instrument?
I know the question might sound a bit off, sorry about that, but I can't find any terms and conditions related to this very basic topic. I have a license for Kontakt, the full version, which allows me to save my brand new instruments made with my samples. So, can I make these file available for free download? I understand…
-
Creating an instrument and KSP errors
Hello everyone :) !! I'm new to scripting in general so probably I'm overlooking something very simple here. I keep getting errors like "newline expected" or "'else' or 'end if'" expected (even when I closed all 'if' blocks. Here's my current script: on init declare %low_samples[4] declare %mid_samples[4] declare…
-
KSP Stuck on a Script, Second Menu PREV NEXT switches not working ..Please Advise
Hello, I'm about a week in on learning how to script and need some help. I've spent the last several hours trying to get this working but still no joy. 2 menus, 2 sets of PREV/NEXT switches. The first set on menu 1 work , the second set on menu 2 do not. Any help would be greatly appreciated. Thank you. on init…
-
How to update project tempo for Sequencer?
I assume it has something to do with the on listener callback but I couldn't find enough info in the manual to figure out how to script it so that when I change tempo in my DAW the sequencer also changes its tempo. I appreciate any help :)
-
Hide the pictures on startup:
declare ui_label $frame_dhol(1,1) set_text($frame_dhol,"") set_control_par_str(get_ui_id($frame_dhol),$CONTROL_PAR_PICTURE,"frame_dhol") set_control_par(get_ui_id($frame_dhol),$CONTROL_PAR_HIDE, 16) Hide the pictures on startup: but picture is not hiding at start up. only when is there something wrong in the code ? please…
-
Seeking Help to Complete a Script with Specific Key Press Functionality - Budget Negotiable
I am looking for someone who can help me finish my script. I want a complex rule: I want a Photo to be displayed when 10 specific keys are pressed, and for the photo to be hidden again when the keys are released. We can discuss the budget
-
Noise gate effect necessary for DAW auto-bypass on silence (CPU reduction)
Unless I'm missing something, it's quite strange that a plugin old enough to drink anywhere in the world doesn't include a simple noise gate among its list of 92 effect modules. 😏 Aside from being important for all the standard reasons, it's crucial for CPU savings in DAWs like Reaper that automatically bypass plugins with…
-
Issue with slider behaviour - click release changes the value
Hey guys, I have an issue with a slider (reverb volume in my case, although I don't think it's relevant). When I click the slider, adjust the value and I see the value changing in a display label. However when I release the mouse click the value changes a little. While trying to explore the issue I figured out that if I'm…
-
KSP Improvement Suggestions
Here is a small list of very useful features that I wish were available in KSP to save some code writing: ● The ability to pass variables to functions like this: function myFunction($var1, %var2, …) declare $myFunctionVar1 := $var1 declare %myFunctionVar2 := %var2 … end function ● The ability to use local scope variables…
-
How to make "change_vol" work as in the documentation?
Hello, Using Kontakt Noire, I am trying to change a note volume using KSP like in the documentation : ni-tech-manuals/ksp-manual/en/event-commands#change_vol-- on note change_vol ($EVENT_ID, 0, 0) end on Whatever the values I use it does not work. I have managed to change other properties, "change_velo" works. But not…