Archives

I no longer have LED feedback on the macros device when midi value change .Bug ? Missing Listeners ?

Hello The listeners for macros are still missing when compiling them, which is a real problem for LED feedback. Has this issue been resolved in Control Studio version 3.0? def _mode1_ui_listeners(self): try: self.send_a_id_XX_led = eval(self.send_a_id_XX["module"]) self.send_a_id_XX_led.add_value_listener(self.send_a_id_XX_led_listener) except: self.log("_mode1_ui_listeners: " + str(self.send_a_id_XX["element"]) + " does not xx being the number of the macro that is identified […]

sending racks name as Mackie control

this was pretty easy once i got a cup of tea and a fatty on the go. Ive built a custom arduino controller and was worried about the sysex bit. as soon as i opened ableton it sent a handshake and all system go. John is a legend in my house right now 😁

mapping to macro variations in audio effect rack

Thank you very much for the hints. I managed to select and recall macro variations using following actions: action: set modifier mX > cur_val of a switch (Open Stage Control widget) sending MIDI cc action: self.song().appointed_device.selected_variation_index = self.get_modifier_value(“mX”) action: self.song().appointed_device.recall_selected_variation() Bonus: randomize macros: self.song().appointed_device.randomize_macros() Regards, mj

PLS HELP WITH ENDLESS ENCODERS X-Touch MINI

Even im getting kinda frustrated now. ive tried everything, nothing works. whats funny is i had some made it work with remotify years ago when i bought my x touch mini. ive been trying to get the endless encoders to work with css version 2.9, but nothing works. kindly fix it please.

custom code in listeners does not work

Hi, I’m also struggling with custom code in listeners. May I ask for 1-2 simple examples using LOM listeners? For example I tried to change parameter number with variables in “self.song().appointed_device.parameters[1].add_value_listener” but it’s not possible for me to make this work. So, what does “must resolve to a valid listener target” mean ? Kind regards, […]

custom code in listeners does not work

You can use custom code in a listener field, but it must resolve to a valid listener target within the Live Object Model or to a valid function/method name in the script. There isn’t a “any incoming midi” listener. The only similar thing I can think of is adding a ‘receive_midi’ method in your script. […]