What's new

NI Kontakt Reverse Button

Christian Skeel

New Member
hi
I am trying to make a script for a button that is connected to the reverse button in the source panel but I cannot find any way to address that function.
Is it called something with note revert playback direction?

Does anyone know how to do it?

Cheers Christian
 
There's no engine parameter available for Reverse button. The only workaround is by duplicating groups then switching between them.
 
Hi EvilDragon
I have no problem making a knob for my two groups. The knob sees the group names but the active group doesn’t change when I change the knob.

Can you tell me what I am doing wrong? Please

Here are the script I try to get to work:

on init
declare ui_knob $selected_group(0, $NUM_GROUPS-1, 1)
end on

on note
disallow_group($ALL_GROUPS)
allow_group($selected_group)
end on
 
Hi EvilDragon
I solved my question with a code snippet you have written in another thread.
Thanks. You are a very significant help.
All the best Christian

on init

declare $ID

declare ui_switch $Noise

end on


on ui_control($Noise)

if ($Noise = 1)

$ID := play_note(0,127,0,-1)

else

note_off($ID)

end if

end on
 
Hello, Just wondering I'm using Kontakts Single Sample Drop feature, im trying to code in a reverse button however I've managed it before with two groups as you said above, can't seem to get it to work any more cos by using the Single sample Drop you've only got one Group option is there another method I can use in this senario? Ideally for now I only want one single Sample drop view (Although is it possible to have more than one? if so any direction or tutoritals on how to do this?) and to have the sample thats imputted to be reversed if required.

Thanks
 
Top Bottom