Would it be possible to have a function, that would place a system break at every rehearsal letter in a future update of Dorico?
I imagine that this is certainly possible.
1 Like
Meanwhile, you can use a script:
local app=DoApp.DoApp()
app:doCommand([[NoteInput.CreateRehearsalMark]])
app:doCommand([[Edit.CreateSystemBreak]])
2 Likes
This is a great idea to add system breaks along with your rehearsal marks, rather than adding breaks to rehearsal marks later on.
You could even choose to have Shift+A map to this, instead of to the default Create Rehearsal Mark (or you could map some other shortcut key). This would require editing your keycommands JSON file.
1 Like