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 […]
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 😁
Ableton prefers 63/65. 2 Comp i think?
yes i’m new and trying to learn how to send track names to a display?
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
Hi, it seems, that there is a x-touch editor software that lets you select different relative modes for the encoders. Maybe try different settings ? Regards, mj
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.
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, […]
Hi Glenn! Could you help me get this adapted to my Launchpad Mini Mk3? I want to have a 6×4 session grid with mutes, solo and arm below. I manage already that but my Grid has only one color for the clips. Someone in the forum shared a Template for the Programer mode so I’m […]
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. […]