Last active
April 5, 2019 15:27
-
-
Save sscotth/02a63889b55650e09b9f9f443c96a965 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import QtQuick 2.0 | |
import MuseScore 3.0 | |
MuseScore { | |
menuPath: "Plugins.transposeDown" | |
onRun: { | |
for (var i = 1; i-- > 0;) { | |
cmd("transpose-down"); | |
} | |
Qt.quit(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import QtQuick 2.0 | |
import MuseScore 3.0 | |
MuseScore { | |
menuPath: "Plugins.transposeDown1" | |
onRun: { | |
for (var i = 2; i-- > 0;) { | |
cmd("transpose-down"); | |
} | |
Qt.quit(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment