I have a matrix macro (where part is shown below) where I play different sub-parts of loopers depending on if they are selected or not. I set SelectionIn_state and SelectionOut_state and I can see that the variables get updated in Macro Variable Viewer, but the Insert Loopers they keep on playing as if nothing has changed. This is not changed if I modify the Syncro state. On the Main looper it works fine. There seems to be some issues with the Insert Looper selections since they where also part of my previous post about slicer. Thanks for input!
—-CaseBranch 1—
CaseBranch 1
If {$Looper1Locked$ == 1}
TrackLoopBeginAt trk1 0.0
TrackLoopEndAt trk1 {$current_loop_duration_samples$/8}
WaitDuration 50
EndIf
If {$Looper_fx1_rank1_Group_state$ == 1}
Set $Looper_fx1_rank1_SelectionIn_state$ = 0.0
Set $Looper_fx1_rank1_SelectionOut_state$ = {$Looper_fx1_rank1_current_length$/8}
WaitDuration 50
EndIf
…
———