Hy,
I tried to find out how it is possible to do the following:
press a button, play a note and show the played note on the kontakt ui keyboard. But I had no luck.
Thanks a lot for your help and ideas.
on init
declare ui_button $test
declare $noteID
declare $root_note :=60
set_key_pressed_support(0)
end on
function EE()
if ($test =1)
play_note($root_note, 100,0,300000)
set_key_pressed_support(1)
set_key_pressed_support($test)
$test :=0
end if
end function
on note
if ($test=1)
call EE
end if
end on