Solo/mute drumpad as reaction

0

Dear  all,

Can somebody give a hint on how to mute/solo a drumpad in a drumrack?

This line does not seem to work:

The pads are numbered from C1? Is C1 drumpad 1?

self.drum_device.drum_pads[1].solo = True

Thanks for the help!

Wilfred Adegeest Answered question
1
self.song().tracks[0].devices[0].drum_pads[0].mute = True


Note that drumpads count from the very bottom.

You can also use just the visible drumpads

self.song().tracks[0].devices[0].visible_drum_pads[0].mute = True

JohnC Answered question
You are viewing 1 out of 5 answers, click here to view all answers.