-
Kontakt Instrument GUI Designer
Hi Folks, Does anyone know of a company or individual that will will design a scripted user interface for me? The research that I've done online gives me either the scripts or the graphics, but not both items. As an example the Hollow Sun 'Shell' interface looks great for what I need but is obviously protected. I want the…
-
Is the performance view folder/file required?
I had only briefly tested Creator Tools, which began with the creation of an .nckp file. None of the Kontakt 5.x instruments I've developed previously included this file+folder, is it necessary?
-
Is it possible to remap studio drummer?
Hi I have a psr s910 keyboard which I've been using as a midi controller. The keyboard has drum samples built-in which active midi notes in kontakt but the sound is not correct. Is there a way I can remap studio drummer or any other drum library according to my keyboard drums
-
Reloading duplicate samples efficiently, wait_async confusion
In my instrument, you can load up to 16 samples. The instrument itself can be in one of three sample modes ("time machine", sampler mode w/ reverse on, or "wavetable") set from a ui_menu. Because there's no way to change the sample mode from the script, I have to have 16 * 3 = 48 groups, each with it's own user zone and…
-
Odd behavior in copy made form K6 instrument
(I mistakenly posted this elsewhere before I noticed the scripting forum link...tho that post seems to have vanished) I had began creation of a new K6 instrument using Creator Tools which started with creating a performance view file. But I ended up going back to Sublime+KSP pretty much right away. The first instrument…
-
sharing variables between scripts in different instruments
Hello folks. Thank you in advance for any help you can give me. So I have written scripts between different instruments with in Kontakt 6. And I need some variables as they change in script A (let's say strings) to be changed as well in script B (let's say horns). I have read a lot about PGS, and I am using it in my…
-
Issues with Wave alphas
Can't seem to achieve full transparency on the background with this code, and can't seem to cause any change in the opacity of the waveform itself at all with this code. Am I doing something wrong? on init set_ui_height_px(290) make_perfview declare ui_slider opacity (0,255) declare ui_waveform $Waveform(6,6) attach_zone…
-
More than 16 custom event parameters
Currently, you can have only up to 16 values stored with $EVENT_PAR_CUSTOM. Unfortunately, my program is really complicated and needs probably double that for most events. I need the parameters so that I can communicate a lot of information between the NCB and the LCB (a lot of weird per-voice modulation stuff). I'm…
-
KSP bug, ui_table precision lost
Run this code: on init declare ui_table %table[4] (1, 1, 7200) %table[2] := 1908 message(%table[2]) end on on ui_control (%table) message(%table[2]) end on When the script loads, the third column will be set to 1908 and be printed out. Now set any column except the third column to something else with your mouse. The third…
-
MIDI Map Menu - No duplicate entries.
Hey all! I have a nut I've been trying to crack all day. I have a panel with 24 menus so that a user can assign MIDI notes to drum articulations. It's all functioning beautifully except for one thing: I'd like to make it so that there are no duplicate entries. IE: If the Snare is set to MIDI Note 38 (D1), and someone tries…
-
"Multiscript" Kontakt 6 for switching instruments in the "instrument bank" on midi controller.
Please tell me multiscript Kontakt 6 for switching instruments in the "instrument bank" on my midi controller (midi commander - meloaudio). All my instruments are on midi channel "A": 1,2,3,4,5,6,7,8 channels. Multiscript should disable all other instruments (midi channels) when switching to the next instrument, and the…
-
Can you us a note to change a menu item?
First of all thank you so much to anyone who takes their time to help me with this question. I am super new to scripting just started about 2 weeks ago, and I have menu items that allow different groups just like my key switches do. However I would like to be able to have the menu item change when the key switch is…
-
KSP feature request, special play_note() option
I'm not sure if there's a dedicated space for feature requests, so I'm just putting this here. The play_note() function takes a microsecond duration parameter so the note knows how long to hold. Setting this to 0 makes the entire sample play, and setting it to -1 will play the sample indefinitely until the key that…
-
How to make visible the name of the pasted tune scale in preset menu?
Hi, I modified the script, so it is possible to store Key position in Preset and show the name of the chosen tuning scale. But the name of tune scale doesn't show after copy-paste procedure. I tried different ways, my attempts were in vain. How to make visible the name of the pasted tune scale in preset menu?…
-
Modify Midi Echo script to include off/on mode or bypass?
Can some one assist me in modifying the "Midi Echo" script so that it includes a simple off/on knob like in the "Arpeggiator" and "Unisono - Portamento". An enable/disable button would do as well. I have watched several tutorials and attempted multiple script modifications but have not been able to figure out how to…