Hello guys!
I want to make a software version of my little hardware synth. Instead of the keyboard I’m using push buttons. So I’d love to replicate that visually. Is there any way to do it Cabbage?
Thanks!!!
Buttons as the keys
HI @Ksenia, welcome to the forum. You can easily do this with buttons in Cabbage. If you create a button you can use it to trigger an instrument:
myButton1 chnget "button1"
if changed(myButton) == 1 then
//trigger instrument using event, schedule, scoreline etc..
endinf
Hello, Rory! Thank you so much for the answer! Pretty straightforward!
Happy to be here and experiment with your Software!
Happy holidays!
1 Like