Chord inserted incorrectly when spams multiple measures
I posted something similar but I just cannot figure it out. The notes to a chord should be added in one place but I just get this weird behavior when chord spans more then one measure
import QtQuick 2.0
import MuseScore 3.0
MuseScore {
menuPath: "Plugins.pluginName"
description: "Description goes here"
version: "1.0"
onRun: {
var cursor = curScore.newCursor();
cursor.rewind(1);
cursor.setDuration(2, 1);
cursor.addNote(70);
cursor.addNote(72, true);
cursor.addNote(76, true);
Qt.quit();
}
}
Attachment | Size |
---|---|
moremore.png | 9.54 KB |
Comments
confirmed. see https://musescore.org/en/node/358575
In reply to confirmed. see https:/… by msfp
I saw the link.. It has nothing to do with my case
In reply to I saw the link.. It has… by kamilio141414
How do you than insert chord which spams multiple meassures ?