Create a mandolin tab score in a plugin - help please
I haven't been able to hit on the correct syntax to correct a mandolin TAB score in a .qml plugin.
I'm using MS 3. The score creation line in the plugin is :-
var score = newScore("Test-Score", "mandolin(tablature)", 32);
It is undoubtedly creating a treble clef unnamed instrument score of 32 bars.
Can someone please let me know the syntax for TAB.
Comments
var score = newScore("Test-Score", "mandolin-tablature", 32);
for info missing in the api doc, pls try search the src (the searchable ms3 src archive https://github.com/fp22june/MuseScoreTag362/)
click thru some results of the search "newScore" https://github.com/fp22june/MuseScoreTag362/blob/3b5857f0761c42574e8cb5…
to see the 2nd parameter uses InstrumentId, that's < Instrument id= ... > inside the C:\Program Files\MuseScore 3\instruments\instruments.xml
but
it seems there's a problem with newScore TAB creation, one workaround is to read a prepared template score, see https://github.com/jeetee/MuseScore_DailyLog