Home Forums Macros How can I retrigger Matrix Macro so new Case Branch triggers? Reply To: How can I retrigger Matrix Macro so new Case Branch triggers?

#6318

Thanks!

I will look into the above.

One thing though. You write that a RepeatWhile Loop cannot be stopped from the outside. However when I trigger the below CaseBranch from a second matrix (where I set the same Global variable $rndSliceActivated$ used in the first Matrix RepeatWhile statement) then the loops selection is reset and the RepeatWhile loop in the first Matrix is stopped and I can trigger another CaseBranch. To me this means that the RepeatWhile CAN be stopped from the outside, right? Or am I misunderstanding something?

—–Second Matrix—–
CaseBranch 1
Set $rndSliceActivated$ = false
MidiSend “Launchpad MK2” 150 106 5
WaitDuration 500
TrackLoopReset trk_all
InsertSendMessage fx1 1 SelectionReset
BreakCaseBranch
——–