Hi,
Thanks, but do you know where i can find a manual/glossary reference for midi....for example
I have this script by their manual:
// Attribue à NeedsTimingInfo la valeur « true » au niveau global pour activer GetHostInfo()
NeedsTimingInfo = true;
function ProcessMIDI() {
var info = GetTimingInfo();
// Prend un objet TimingInfo à partir de l’hôte
if (info.playing) { // Si le transport s’exécute
Trace(info.tempo); // Affichage du tempo dans la console du module
}
}
Ok it's clear, but how could i know that the function ProcessMIDI has the command "info.playing" ??
Or this:
note.velocity = GetParameter("Note Velocity"); .....how could i know that GetParameter can handle the value "Note Velocity" or that exist the command note.velocity ??
They don't give us a reference glossary/syntaxs....
Maybe that the javascript i can use is expecially for the web! but for it i have all the explications of functions, commands, objects syntax and their use.
Please help! 😟