Keyboard OctaveNumber Label
-
This time just a really quick question.
Is it possibly to change the font size of the floating tile keyboard octave-numbers, or do I need to make custom labels?Thanks for the help!
-
@VorosMusic Use look and feel to create a completely custom keyboard.
-
@d-healey
Just took a quick look at it again.
Does anyone know what function the keyboard numbers have?They seem to be not part of "drawwhitekeys" neither "drawkeyboardbackground"?
-
@VorosMusic They don't have their own function, you can draw them when you draw the keys
-
if(noteNumber % 12 == 0) { g.drawAlignedText("C" + parseInt(noteNumber / 12) - 2, area, "centred"); }
-
@d-healey @Christoph-Hart
ok, than I'll do it that way!
Thanks! -
-