How to display a label from a script processor to a label in the main interface. (processor ID doesn't work)
-
Hi,
How to display label from a script processor to a label in the main interface?
I tried processor ID, it doesn't work.
-
@Yannrog What does the label show?
-
@David-Healey chord names from a script
-
@Yannrog Does the chord detector do anything other than show the names of chords?
-
@David-Healey in the script, it searches for what note beeing pressed, there on init scripts, onNoteon callbacks, onNoteoff callbacks. I started from your example of chord detection to help, it works perfect, however I can't display it in the main interface.
-
@Yannrog If all it's doing is showing chord names then it should be part of the interface script rather than a separate midi processor
-
@David-Healey Yes, I tried however.
For some reason it cancel some codes,and does not work.
-
@Yannrog You can't just dump it in to your existing script, you need to write it into your script so it all works as a single unit
-
@David-Healey ok,
Normally it works well,
When I add it to the script, it doesn't know the function “push“ and “indexof“. I am doing a beginner mistake. I am wondering, why it works by itself and when I add it to the new script it doesn't know the functions..

-
@Yannrog Unknown function means the thing on the left side of the
.is not what you think it is. In this case it means it's not an array. -
@David-Healey Thank you, I'll check it