Home Forums Macros Insert Looper Selection not updated by $Looper_fx1_rank1_SelectionIn_state$

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #6343

    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

    ———

    #6345
    Philippe OllivierPhilippe
    Keymaster

    Hi Daniel,
    If you want to set the begin and end points in a modular looper, you need to use the dedicated messages :

    InsertSendMessage fx1 1 SelectionIn 0
    InsertSendMessage fx1 1 SelectionOut {$Looper_fx1_rank1_current_length$/8}

    Settings the variables value will have no effect on the Looper settings.
    The variables are here to get the current settings state.

    Philippe

    #6349

    Yes, of course. I don’t know why I suddenly forgot about this… Thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.