Reply To: Can I copy all the faders from one tab to another without copying all the tabs?

Home Forums General Using Ctrlr Can I copy all the faders from one tab to another without copying all the tabs? Reply To: Can I copy all the faders from one tab to another without copying all the tabs?

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

    If I understand correctly you are able to send values 462-562 as sysex to the PCM-70 and it shows 0%-100%.

    I think all you need to do is change the uiSlider to a uiFixedSlider and then enter the following into the field ‘slider contents’:
    0%=0
    1%=1

    100%=100
    Now the slider will reflect what you are seeing on the PCM-70.

    Note: As far as I am aware you can’t enter 0%=452,1%=453 etc. uiFixedSlider always starts from 0. I think uiCombo is the same.

    …then you may have to write a Lua callback function in the “Called when Modulator Value Changes” that takes the value and adds 462 to it. Set Midi Message Type to none if you have it currently set to “SysEx”. Now you may need that msb,lsb function I posted earlier.

    mySendSysEx=function(mod,value,source)
    value=value+462
    panel:sendMidiMessageNow(CtrlrMidiMessage(
                    {0xf0, ......value ,0xF7}))
    end
    Ctrlr