KeySig unknow' attribute———"C# major,A# minor"
How can I get the specific type of keySig through the plugin, for example, this keySig is C# major, A# minor. This property is stored where the plugin is.
How can I get the specific type of keySig through the plugin, for example, this keySig is C# major, A# minor. This property is stored where the plugin is.
Do you still have an unanswered question? Please log in first to post your question.
Comments
cursors can read keysigs, see cursor.keySignature
In reply to cursors can read keysigs,… by XiaoMigros
I don't know which parent attribute C # major and A # minor attributes are stored in. 'note. pitch' can be used to store the pitch of a note, but C # major and A # minor don't know where they are stored
In reply to I don't know which parent… by davil123
i think its as follows: positive int is number of sharps, negative int is number of flats (so c# major would be 7, f minor would be -4)
In reply to i think its as follows:… by XiaoMigros
But how do I get these positive and negative numbers? I have no idea about it
In reply to But how do I get these… by davil123
by using a cursor. The cursor.keySignature property reads the key signature from a cursor, so move the cursor to the place you want to read the key signature from.
In reply to by using a cursor. The… by XiaoMigros
Thank you. I will try my best to read it
In reply to Thank you. I will try my… by davil123
To read the key signature at the beginning of the score:
In reply to To read the key signature at… by XiaoMigros
Thank you very much, the code so brief!
In reply to To read the key signature at… by XiaoMigros
I have another new question. How can I add a title text through the plugin? I found that using "var text1=newElement (Element. TITLE_TEXT);" The method is not effective
In reply to I have another new question… by davil123
you can use
curscore.addText("title", text)
In reply to you can use curscore.addText… by XiaoMigros
Thank you! I succeeded!!
In reply to cursors can read keysigs,… by XiaoMigros
Help me, xiao Migros! https://musescore.org/en/node/350125