How to use the "cmd()" function in the plugin
How to use the cmd() function in the plugin, I couldn't find any documentation for the cmd() function.
How to use the cmd() function in the plugin, I couldn't find any documentation for the cmd() function.
Do you still have an unanswered question? Please log in first to post your question.
Comments
Always sandwich cmd bewteen curScore.startCmd & curScore.endCmd, e.g.
curScore.startCmd();
cmd("next-score");
curScore.endCmd();
It is said that pretty much anything that can be done via the menu can be done via cmd
Here’s a list :
https://github.com/calculuswhiz/musescore-utils/blob/master/ValidComman…
In reply to Always sandwich cmd bewteen … by elsewhere
Thank you!
In reply to Thank you! by davil123
That list is pretty old (4 years): next-score is not even in it. I look mostly in plugins I downloaded with the DOS command findstr
In reply to Thank you! by davil123
Here's a more complete list:
https://github.com/yonah-ag/musescore-cmd/blob/main/MS3-CMD.csv
In reply to Here's a more complete list:… by yonah_ag
Many thanks!!