Making a chorder (play chord with a button)
-
Boop
i'm trying to make a simple chorder, starting with a button playing a C major chord
inline function onButtonCmajControl(component, value) { if (value) Synth.playNote(60, 64); if (value) Synth.playNote(63, 64); if (value) Synth.playNote(67, 64); else Engine.allNotesOff(); break; };
This code work but the thing is it doesn't play the chord like if was playing with my keyboard (FloatingTileKeyboard) actually it just play the sound without displaying the notes on the keyboard
-
@Lorrislehorse Why do you have if (value) several times?
-
@Lorrislehorse said in Making a chorder (play chord with a button):
inline function onButtonCmajControl(component, value)
{
if (value)
Synth.playNote(60, 64);
if (value)
Synth.playNote(63, 64);
if (value)
Synth.playNote(67, 64);
else
Engine.allNotesOff();
break;
};so as David is hinting...start with this:
inline function onButtonCmajControl(component, value) { if (value) { Synth.playNote(60, 64); Synth.playNote(63, 64); Synth.playNote(67, 64); }else{ Engine.allNotesOff(); }; };
-
-
@Lorrislehorse afaik the keyboard tile only displays the notes from the input, not the ones generated internally. This means you have to make your own, using a panel for instance
-
@ustk You know if there is some projects with keyboards made from buttons?
also the script synth.playnote just generate a sound when pushing the button, is there a way to make it write Midi Notes too(in example when recording in your Daw it would write notes)
-
@Lorrislehorse I made a video tutorial about making a custom keyboard using a panel, should be on my YouTube channel but might still be restricted just to Patreon supporters,I can't remember.
HISE doesn't output MIDI notes to the DAW.
-
@d-healey if I sub as a 'Patreon supporter' does it require me to login to YouTube? sorry for the question I just can't login to you tube anymore.
-
@ospfeigrp said in Making a chorder (play chord with a button):
ub as a 'Patreon supporter' does it require me to login to YouTube? sorry for the question I just can't login to
No, You just Get Access to Videos And Can Watch Them on Patreon, It will Show The Youtube Video there
Also to Watch Youtube Videos You don't necessarily need an Account :) -
My public videos are also mirrored to Odysee so you can watch them there if you prefer.
https://odysee.com/@DavidHealey:5