-
Image format for get_font_id(<file_name>)
Does someone have an example of what the format of an image is supposed to be for use with get_font_id(<file_name>)? My text shows up as thin vertical slices of random characters instead of the characters I type. I assume it's a problem with my .png image and/or the .txt file that accompanies the image. Here's what I did:…
-
Best Way To Reset Labels?
Hey there everyone, I'm looking into ways to have labels display values within a ui_control callback and then reset to their original label. For example, "Freq". So far, all I've been able to come up with is using a for loop to create a timer, of sorts, that resets the text after the UI control has been set for a short…
-
XY Pad get value by ui_id
Hi! How can I get the value of x or y of a cursor when I only have the ui_id of the XY Pad? Is there a way to do this with get_control_par? Many thanks in advance!
-
on persistence_changed, select button
Hi everybody! I'm looking to select a button by default. I'd been using an "on persistence_changed" then "play_note" to trigger a keyswitch on persistence_changed play_note (0,127,0,0) end on But as EvilDragon pointed out, this play_note interferes with the ks_list. And I'd much rather select a button on default, something…
-
define key_lo, key_hi MIDI range
Hi everyone! I want to specify different MIDI ranges per group, but when I switched to Group 3, I could not trigger a sample below 60, whereas I've listed it as 57. I've figured out that Group 0 defines the MIDI range, but even with a note in_range callback, I can still trigger a note outside of the specified range. I…
-
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…
-
Transposing Chords.
This is probably really simple. Apologies in advance for my lack of knowledge. I'm making a simple instrument for my friend that plays specific chords on specific keys. If you think - it works like XFER Cthulu - but with way less functionality and comically bad MSpaint graphics. The way I've gone about it but using…
-
Modifying Send Effect Parameters
Hey Guys, Hopefully a simple one. Struggling to use "set_engine_par" correctly to modify a Send Effect parameter. For example "engine_par_rv_predelay" within a Legacy Reverb effect. From what I can see in the Reference Manual "ni_send_bus" may be required but unfortunately I can't seem to correctly interpret this. Any help…
-
ks_list defintion
Hi everyone! What "ks_list" purpose in this context? I used it to define the key color range but I noticed that it's affecting the midi note being played so can't quite figure out what it's doing or how I should co-ordinate the MIDI note value to its associated group. Thanks!! declare $sel_ks declare $find_ks declare…
-
KSP Script : transform poly_at to CC ?
Hello ! I'm sure it's not difficult, but I'm not able to do this alone, I don't have the basics to learn scripting on my own... I just need a script to transform poly_aftertouch to cc ... Thanks a lot if somedy help. 🌞
-
Waiting 1 microsec before change_vol() results in ~50 millisec attack
on init declare $new_id end on on note ignore_event($EVENT_ID) $new_id := play_note($EVENT_NOTE, $EVENT_VELOCITY, 0, 500000) change_vol($new_id, -100000, 0) change_vol($new_id, 0, 0) wait(600000) $new_id := play_note($EVENT_NOTE, $EVENT_VELOCITY, 0, 500000) change_vol($new_id, -100000, 0) wait(1) change_vol($new_id, 0, 0)…
-
How to deselect all other buttons when pressing one button?
Hello, I have ten buttons that each allows specific groups and disallow others. This works ok, but I'm having an issue with all the other buttons not being deselected when selecting one of them. I researched the old forum and found this:…
-
Completely stumped on label image/animation behavior - Reset/Reload instrument.
I have a set of labels with custom skins that are controlled by menu selections. The issue I'm running into is that all images reset to the first frame when the instrument is restarted/reinitialized, despite the menu selections themselves staying persistent. I would like whatever frame is tied to a specific menu selection…
-
Can Creator Tools export specific volumes from all zones?
Can I use the Creator Tools to export the individual zone volumes from my Kontakt Instrument? I am referring to the individual sample zones's specific volume adjustments. Not the group volumes. Is it also possible to get the internal values of plugin settings from my NKI file? (I know it's called "creator" tools, but…
-
Embed loop points in sample within Kontakt
Hey there Building my first Kontakt instrument and have found the contributions on the various forums hugely helpful - thank you all! Apologies if this has been discussed elsewhere and I've missed it. I built the instrument in K6 but am in the process of converting (read: re-building 🙃, as I didn't realise Kontakt was not…