Replies: 6 comments 10 replies
-
Hi, do you need at the ctrlr level or panel level? |
Beta Was this translation helpful? Give feedback.
-
Maybe something like this for an idea? midiReceived = function(--[[ CtrlrMidiMessage --]] midi) local s = midi:getSize() if s == 3 then if _c.setListener:getValue() > -1 then local ccNumber = midi:getData():getByte(1) local t = {"learn1", "learn2"} _c(t[_c.setListener:getValue() + 1]):getMidiMessage():setProperty("midiMessageCtrlrNumber", ccNumber, true) end end end The |
Beta Was this translation helpful? Give feedback.
-
Hi Damien! Thank you! That's a great idea. I have made version 3.0 which uses Ctrl/Cmd click - would be interested to know if Cmd click works in macOs. Regards, |
Beta Was this translation helpful? Give feedback.
-
That’s great to hear. @damiensellier Good luck with it. |
Beta Was this translation helpful? Give feedback.
-
EDIT:: This is an updated version: @damiensellier has updated version 5.6.33 to support Note: You can use
|
Beta Was this translation helpful? Give feedback.
-
Also I found out that you need: local s = midi:getSize() if s == 3 and midi:getType() == 0 then …. Otherwise incoming note messages may be interpreted as cc mapping changes if the user is using a MIDI controller as input. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
When adding a new slider or editing an old one, I'd love to have sliders learn what the CC is by turning the knob on the synth. This would make assigning sliders go faster.
Beta Was this translation helpful? Give feedback.
All reactions