How can I make it so a certain MIDI input note triggers a button?
- 
 Thank you! 
- 
 function onNoteOn() { if (Message.getNoteNumber()==36) Button.setValue(1); }
- 
 @mehmethand said in How can I make it so a certain MIDI input note triggers a button?: function onNoteOn() 
 {
 if (Message.getNoteNumber()==36) Button.setValue(1);
 }actually: function onNoteOn() { if (Message.getNoteNumber()==36) { Button.setValue(1); Button.changed(); } }
- 
 @Lindon Thank you! I just started with HISE yesterday. Would you mind explaining what the significance of 36 is? Does that correlate to a certain midi note? Also how may I assign a specific button to this? Apologies for my noob knowledge lol, thank you. 
- 
 @yeshuasaves ok so first step - watch all dave healeys youtube videos, and then subscribe to his patreon and watch all those... 
