Setting the tempo
The following code displays the tempo but doesn't set it.
eTempo = newElement(Element.TEMPO_TEXT);
eTempo.text = '\uECA5' + ' = ' + Math.round(60);
eTempo.visible = visible;
aCursor.add(eTempo);
The following code displays the tempo but doesn't set it.
eTempo = newElement(Element.TEMPO_TEXT);
eTempo.text = '\uECA5' + ' = ' + Math.round(60);
eTempo.visible = visible;
aCursor.add(eTempo);
Do you still have an unanswered question? Please log in first to post your question.
Comments
Also set
eTempo.tempo
: https://github.com/jeetee/MuseScore_TempoChanges/blob/master/TempoChang…