Selected Track = mute others: Reactions 2?

1.43K viewsCSS Feature Requests
0

Hi there,
as I’m looking forward to the reactions2 trials, I’m wondering if it would be possible to use reactions to program something like “mute other tracks” when being in selected tracks “mode” (not that there’s a mode)?
If this isn’t clear and I need to formulate this question better, please let me know 🙂

admin Changed status to publish May 22, 2024
Attached Files:
0

OK.

Nice work. Glad you went that far!

Condition:

(I summarized before)

“Track is not current track” looks like the attached, i.e not part of the selection

self.song().tracks[loop_number].is_part_of_selection == False

and then muting it is (notice ‘[loop_number}] above) just setting mute to true.

self.song().tracks[loop_number].mute = True

I think you can do it with JUST those two items in the reaction (and the listener, which is the button you want to press) which would be super elegant.

I’ve set it up and made you a screenshot, but I haven’t tested this – it’s not functionality I need.

Notice that
1. the code tells you everything – that’s python (i copied it above) and you can see the actual action you’re performing right there. you’ll know you’re on track.
2. click that finger to the left of the action/condition/loop (when you are working with ‘track’) to select what track. If you are looping, you pretty much always want to choose “loop-iteration number”

LET me (us) know if you were successful, i.e got what you wanted.

admin Changed status to publish May 22, 2024
Attached Files:
You are viewing 1 out of 13 answers, click here to view all answers.