Archives

Using modifier for sending MIDI velocity value to input

What I’m trying to achieve is to send certain velocity value to Launchpad’s button that was pressed last. I thought I could do this by storing midi address of a last pressed pad to a modifier, since modifiers can also store text, and then retrieve it in action “send MIDI velocity value to input”.

looping through custom lists

Hi, Are you referring to the reaction named “update modifiers” in your attached script? If so, you’re setting all of the modifiers to the same value with each loop iteration. You should have 1 action and update the modifier name each time: self.set_modifier_value(“m” + loop_number, self.get_list_item(“list1”, loop_number +1)) However, you may run into errors if […]

clear Css Log action

There’s not a mapping to clear the Ableton log.txt file. You don’t need CSS to be open in order to use your script/perform live using your script.

Using modifier for sending MIDI velocity value to input

In your code, you are saving a string to the modifier and not a value. What value are you wanting to save to the modifier? If you’re wanting to store a reference to midi_note_ch_0_val_81 The code would need to look something like this: self.set_modifier_value(“m1”, self.midi_note_ch_0_val_81) However, I’m not 100% sure if this will work, as […]