Suppress Playback in Score but not in Parts

Hi, I’m in Dorico 6.2.10.1640 with a full score including a piano vocal part. I want to see the piano vocal part in the score but don’t want it to playback in Full Score view. I’ve suppressed playback in the score - great, but I want it to play in the Piano Vocal part view but it’s also greyed out in the part. I’ve played around with local and global settings but what ever I do in one view adapts the other view. I can’t seem to find a way to supress playback in the score view but play in the part view. Possible?

Hi @Neilr ,

welcome to the Dorico forum!

Neither the mixer in Dorico/Note Performer nor the suppress playback functionality is layout specific.

You could use a script to toggle suppress playback quickly when switching to part layout.

These instructions would select all notes and activate playback:

local app=DoApp.DoApp()
app:doCommand([[Edit.SelectAll]])
app:doCommand([[Filter.NotesAndChords]])
app:doCommand([[UI.InvokePropertyEnableSwitch?Type=kEventMuted&Value=false]])

And these instructions suppress the playback:

local app=DoApp.DoApp()
app:doCommand([[Edit.SelectAll]])
app:doCommand([[Filter.NotesAndChords]])
app:doCommand([[UI.InvokePropertyChangeValue?Type=kEventMuted&Value=string: “kAlways”]])

You can save each of them in a separate LUA-file (e.g. mute_all.lua and unmute_all.lua and then run the script when you feel like.