I’ve discovered that I can toggle between local and global properties scope using a key command but I’m not having any success assigning a “function” key command… I’ve tried F17. It registers in the Preferences but doesn’t trigger the action.
I also think Dorico should go more towards toggles instead of two key seperate key commands. The introduction of the toggle for Page View/Galley View was a good step in that direction, but there are some things left, e.g. toggling between Commands and GoTo in the jump bar with Tab or something.
The thing with the voice is already possible if you are familiar with scripts, @DanielMuzMurray :
local app=DoApp.DoApp()
app:doCommand([[Edit.ChangeVoice?VoiceDirection=kPreferStemsDown]])
The same is possible for resizing notes to cue size:
local app=DoApp.DoApp()
app:doCommand([[UI.InvokePropertyChangeValue?Type=kEventScale&Value=string: “kCue”]])