Reply To: Sysex formular in list box modulator

Home Forums General Using Ctrlr Sysex formular in list box modulator Reply To: Sysex formular in list box modulator

#118830
dnaldoog
Participant
    • Topics: 4
    • Replies: 480
    • Total: 484
    • ★★

    Hi moroccomoose!

    I would just do that in lua – using a callback function attached to the uiListBox.

    Something like:

    
    myMethod = function( mod,  value, source)
    t={
    [0]="F0 18 0F 00 55 01 02 05 01 7F 7F F7",
    "F0 18 0F 00 55 01 02 05 01 00 00 F7",
    "F0 18 0F 00 55 01 02 05 01 01 00 F7",
    "F0 18 0F 00 55 01 02 05 01 02 00 F7",
    "F0 18 0F 00 55 01 02 05 01 03 00 F7",
    }
    panel:sendMidiMessageNow(CtrlrMidiMessage(t[value]))
    
    end
    

    ?

    Ctrlr