Separate names with a comma.
Of course, I was just trying to make the logic clear and simple to understand.
async is basically a process that we don't know will finish, or when. One such process is loading a file, we can't use the file UNTIL it's been...
At the moment, in your Load code, you're assigning the preset values to the knobs BEFORE you've even loaded the preset. You need to load the...
You have to finish loading the array (wait async) before you can assign the values in it to the knobs.
I'm guessing it's an issue with your text file. I'm attaching my text file for the graphic, which works fine here.
The very first script I ever wrote for Kontakt, May 2005 :) You can change the value_edit to a Knob. on init declare ui_label $label1 (1,1)...
add the pgs_set_key_val(HIDE, 0, $button) to the on persistence changed callback
Ah yes, much tighter. This should work? No flipflops. on note if ($EVENT_NOTE = $LOOP_KS) note_off($ID) $ID := play_note(30...
on note if ($EVENT_NOTE = $LOOP_KS) note_off($ID) $ID := play_note(30 + (20 * $flipflop), 127, 0, 0) $flipflop := 1 - $flipflop pad := 1 - $pad...
Envelope times have always behaved a little strange when responding to a CC or modulator. If it's INVERT, it subtracts from the knob time, which...
Just out of interest, why a taskfunction here and not simply a normal function?
Much better indentation. :-D Maybe try just this in the button code : on ui_control(Pad) note_off($ID) $ID := play_note(30 + (20 *...
"from script" modulator, in 6.6.0 and later
If it's any consolation, I get the same result here... [ATTACH]
You'll need to define an input note for each drum... ie. Kick_MIDI_In := 36. This could be fixed or possibly allow the user to change it so they...
Here's a version, and the button to hide is persistent, so it's remembered by the instrument or snapshot. Slot 1: on init declare ui_slider...
I use a KSP function, which just inlines it on compilation anyway, but it's easier to write.
The important part from the other thread, that you're missing, is disallowing ALL GROUPS and allowing the one group you want that event ID to...
Have you seen the Koala library? He has many conversions like this worked out already... defnitely the Volume one, not sure about the Output...
The slightly confusing thing about that solution is moving the fader with the mouse doesn't change the volume. What I would do is have the fader...