Plugin development
How can get a hold of MuseScore's hierarchical object model, with descriptions of properties and methods? Those who have already written plugins successfully must have acquired that type of information.
I think I have some good ideas for plugins, but without the object descriptions it is practically impossible.
That must be somewhere stored in a descriptive form, were we can learn from and use.
Comments
See https://musescore.org/en/handbook/developers-handbook/plugins-3x
In reply to See https://musescore.org/en… by Jojo-Schmitz
I started studying the plugin documentation indicated above. One thing I couldn't find though, is a description of events attached to the MuseScore elements, like for example, an event that gets fired when a note, a rest, or some other score element is changed. Are there such resources within MuseScore plugin framework? If so, how can find them?
In reply to I started studying the… by luizcrodrigues
Check the interactive notenames plugin
In reply to I started studying the… by luizcrodrigues
AFAIK there aren't any linked to a specific element, but there is a generic
scoreStateChanged
signal as per the API documentation