Hi guys,
I have this script that mutes an instrument if a CC 65 with value 0 is received.
______
on note
if (%CC[65] = 0)
ignore_event ($EVENT_ID)
end if
end on
______
I'd like to improve it so that even if no CC 65 is being sent, it will just play "by default", and only perform the mute/unmute when it first receives a CC 65 value. Is that possible?
Thanks!"