Home Forums Logelloop 5 (English spoken) Korpus ID in Macros

Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #4672
    Gwenole PeaudecerfGwenole
    Member

    Hi there !

    I’m looking for a way to talk to many Korpus using a macro command.
    The fact is that I’m already using 2 Korpus, and my pedalboard is getting kind of full…

    My wish would be to use logelloop’s counter value to select a Korpus via its ID, and then to use the midi variables for Macro to assign some functions to the selected Korpus.

    I know there’s a macro function called trk_sel, is there a kind of “korpus_sel” or “this korpus ID” in the Macro variables ?

    Thanks for your help

    Best regards

    #4676
    Philippe OllivierPhilippe
    Keymaster

    Hi Gwenole,
    That’s a good question! -)

    Yes, the Korpus id will have this kind of functionality, but it is not currently active, I have already put it in order to have your scene memories ready when we need it.

    In the meantime, you can put something like this in your macro :

    //************* Macro begin ***************
    If {$counter$ == 1}
    InsertSendMessage trk10 1 Record
    EndIf

    If {$counter$ == 2}
    InsertSendMessage trk10 2 Record
    EndIf
    //************* Macro end ***************

    Or even simpler, in one line, assuming that Korpus is inserted in slot 1 and 2 of the same track :

    //************* Macro begin ***************
    InsertSendMessage trk10 $counter$ Record
    //************* Macro end ***************

    Philippe

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