-
Allow, Disallow don't work anymore when I reopen the saved Instrument
Hi there, when I wrote the allow, disallow script for every ui_switch everything works fine. as soon as I'm save the instrument and reopen it, it's not working anymore. if ($reverse # 0) disallow_group($ALL_GROUPS) allow_group(1) end if if ($strum # 2) disallow_group($ALL_GROUPS) allow_group(2) allow_group(0) end if if…
-
A Kind Of Round Robin Replacement (In Development)
Hi everyone! As I'm learning to script KSP, I've been reading through some posts and speaking with a few people. I've noticed that many people are unhappy with the performance of Round Robin. So for my jump into KSP, I've decided to take on the challenge of reinventing the Round Robin feature (and giving it a kick!). I've…
-
MIDI ECHO Script in Main Script
Hi there @EvilDragon , is it possible to get the Midi Echo On/Off Power Button (from this discussion https://community.native-instruments.com/discussion/5324/modify-midi-echo-script-to-include-off-on-mode-or-bypass) into my Main Script? and maybe the Time and Trans Knob? Thanks
-
Change Background in the second Tab
Hi there, I need help changing the Background in my second Tab without changing the Background in the first Tab. The first Tab should be the Main Instrument the second Tab should be the Effect Section. Thanks
-
stacking samples vertically in mapping editor
hi folks: i'm quite new to this so please bear with me. what i need to do is to drag a bunch of samples into kontakt's mapping editor and stack them vertically rather than horizontally. obviously i can do it manually, but it takes forever since i need 256 samples to be placed in 4 vertical lanes of 64 samples each. any…
-
Automatization code and default fader positions
Hi friends! 1) Can you please tell me what KSP code I needed to make automation work (read and write functions) on my volume faders? Looks like faders haven't this function. When I activate this function in Cubase and touch my faders - Cubase don't paint any changes 2) What code is needed to make the volume fader take the…
-
A problem when using scripts "drum computer" and "input quantize" simultaneously
When I activate the "note on" switch from "Input quantize" factory script, the "Tune amount" knob from "Drum computer" factory script doesn't work. All steps play the same note, regardless of the value set in the Drum computer's tuning grid. I made this short video showing what I'm saying (The scripts are the factory ones,…
-
Confusion about Instrument and Groups
So i am planing on creating my first instrument with Kontakt. The main concept of the instrument is blending 2 genres together by having a drop down menu for each of the genres with an A/B mix fader. (Similair to the Twenty Five Instrument) So i have been watching tons of Tutorials but one thing still confuses me a lot.…
-
Loop Length Modulation seems Glitched (Kontakt 5)
Hello Experts, I have a rather odd problem, that I'm convinced is operator error: If I modulate the loop length with the mod wheel, the loop length modulation only happens on the root note, the rest of the notes have merely the position of the loop modulated. I have replicated this across a few different samples. What am I…
-
KSP Error
Hello i am receiving an error that say “change tune…. is not allowed in this callback type!” but according to the user manual, change tune can only be used in the on note on release callbacks…. HELP on note $key := %keynum[$EVENT_NOTE] $bend := %tune[$EVENT_NOTE] change_note ($EVENT_ID, $key) change_tune ($EVENT_ID, $bend,…
-
Script to trigger 2nd group when same zone played twice in a row
Rather than set up a round robin that alternates between two groups with every note event, I'm trying to write a script that only triggers the 2nd group when the same zone is played twice in a row. Unfortunately, the results I'm getting are that of a standard round robin. Can anyone tell me where I'm going wrong? on init…
-
Sample Editor
Hi! I have many zones within a group and I like to let them play all the way until the end of the sample and not end with the release of a key. I learned that I can use sample editor to first toggle "Sampler" on, select "One Shot" and then click on the wrench to "copy to all selected zones". However that does seems to work…
-
script limit key range
please help I'm using the limit key range script. but I want it to only be activated if I keep the key pressed C1 and likewise with C#1, D1, D#1 up to E1 ....for example if I touch F1 upwards the script is deactivated
-
mute a note when another is pressed
I would like to add to this code that when $C1 is pressed, $G1 does not sound. but when $C1 is released, $G1 sounds (It can now sound ... that is, it is enabled again) this is the code: on init make_perfview set_ui_height_px(300) declare $C1 $C1:= 36 declare $Csos1 $Csos1:= 37 declare $D1 $D1:= 38 declare $Dsos1 $Dsos1:=…
-
Multi LFO - Control Intensity via MIDI CC?
Is it possible to control the Multi LFO's Intensity via a MIDI CC number? I have done so with a sinewave LFO to create a Vibrato Intensity knob without issue but the Multi LFO intensity doesn't seem to work. Do i have to use the method outlined by Evil Dragon in his LFO info post? I.e. Name all modulators and control via…