How to add arrticulations to my note (staccato)

• Jan 4, 2024 - 15:31

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(0)
       cursor.addNote(70)
       cursor.addAnnotation(Annotation.Accent)
        Qt.quit()
        }
  }

Do you still have an unanswered question? Please log in first to post your question.