Guitar plugin for left hand fingering colours
I am writing a plugin as per subject and am wondering whether there is a way to use a configuration file with a plugin. I would use this to define the colours to be used for each finger so that they are not hard-coded. I have looked at the ColorNotes plugin that comes with MS3 but this has its colour values hard-coded so I can't use it as a model for plugin configuration.
Comments
Yes, it is. Check e.g. Batch-convert
In reply to Yes, it is. Check e.g. Batch… by Jojo-Schmitz
I've been through the source code and tested Batch-Convert and it does save the ticked status between MS sessions - but I can't tell what file they are getting written to. Can you point me to the part of the code which does this?
I found this section:
// remember settings
Settings {
id: settings
category: "BatchConvertPlugin"
but couldn't see how it actually does the save.
In reply to I've been through the source… by yonah_ag
It is done automatically. In the MuseScore3.ini file
You need the
and
In reply to It is done automatically. In… by Jojo-Schmitz
Neat!