-
Can I deactivate a activated Button when a other one gets activated?
Hi there, can I deactivate a activated Button when a other one gets activated? I need to do this with a 5 different Buttons, when for example Button 2 is activated and I activate Button 5 the second one should be deactivated and so on.
-
is it possible to sync a animation to the TM PRO Speed Knob?
Hi there, is it possible to sync this animation Code to the TM PRO (Sampler Mode) - Speed Knob? on init declare ui_button $anim_on_off declare ui_label $animation(1,1) declare $frame set_control_par_str(get_ui_id($animation),$CONTROL_PAR_PICTURE,"animation") set_listener($NI_SIGNAL_TIMER_MS,40000) end on on listener if…
-
BYPASS ANIMATION WITH A BUTTON
Hi there, can anybody help me bypassing my animation with a button? the button is called $BUTTON1 and the animation just $ANIMATION I tried a couple things but nothing happened when the button is pressed. Thanks
-
1 Slider with 2 different (0,1000000) Values
is it possible to script a slider with 2 different values? on init declare ui_slider $Slider1(165000*2, 1) declare $value make_persistent($Slider1) declare $k_Slider1 $k_Slider1 := get_ui_id($Slider1) set_control_par_str($k_Slider1, $CONTROL_PAR_PICTURE, „Slider1“) set_control_par($k_Slider1, $CONTROL_PAR_POS_X, 512)…
-
is it possible to control a hidden ui_slider with another ui_slider?
Hi there, is it possible to control a hidden ui_slider with different effects with another ui_slider? Thanks
-
Can i make Kontakt play a sample loop endlessly after pressing the key just once?
Hey i was wondering if it is possible to set up a Kontakt instrument in a way that it plays every sample loop i start by pressing a key forever. Is there any way to assign an LFO and make it endlessly long so the sample loop would never stop after pressing the key until i turn down the volume of the instrument? i have some…
-
Connecting Insert & Send Effects | Scripting Help
I've been reading the KSP manual while using Creator Tools to make an instrument with Kontakt. I'm trying to add a control knob for plate reverb to change the decay. I'm not getting any errors back, but I can't seem to control the parameter. Attached are screenshots here. This is the script I've been using. I'm trying to…
-
Round Robin Release triggers
Hello, I'm currently developing my first library, I scripted all of the round robin groups and key switches, however I found that i could add groups for release triggers without scripting therefore i did so. set up 10 groups, toggled on release trigger button, and group start random from every group. to my surprise it…
-
Dropdown Menu script
hi there, is there a UI Dropdown Menu script anywhere? I am looking for the ability to have a Dropdown Menu that allows the user select a source group. I know that I can script just mute buttons and such, but for esthetic reasons, I would like to have a drop down menu. this is very crude drawing.
-
Scripting for older version of Kontakt
I've got Kontakt 7. How can I script for an older version, i.e. version 6 or 5? Is it simply by not using any functionality that has been introduced later? If so, how do I determine that? Or are there other things to be aware of? Thank you!
-
How to make multiple articulations in Kontakt when making your own library?
Hello everyone! I'm new here, so thanks in advance for any help you offer :) Main idea: I'm currently working on my own library and I have a flute section. I'd like to be able to toggle between Marcattos and Stacattos within the same instrument that is loaded. But I can't find the code or any other resources on how to do…
-
Knob text on S88 keyboard
Hello All, I'm at my wits end looking for a solution to what should be a simple task - I must be missing something fundamental! I can change the text/label on a UI knob easily enough. I can map that knob to the physical encoder on my S88 keyboard but I can't get the text on the physical knob to follow the ui or even change…
-
Trouble with knob coding
Okay so I know this is absolutely something I’m doing wrong but I’ve watched every video and read every post I can find and still can’t figure this out. I’m trying to assign an image to a slider in the scripting editor but so far I’ve had no luck with the image displaying or functioning properly. Attached below are images…
-
is there a way to bypass a function (animation)??
Hi there, is there a way to bypass a function (animation)? Like when I turn a group on the animation function is on and when I turn the group off the animation is off. I can't found something helpful online. Thanks
-
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…