Problem can be solved by checking the settings for "Live version" : select in the right list "Live 11.2.7". Dieter
View QuestionHDV | Answers
Spending some time on the internet delivered the solution. The colors on all pads on Minilab Mk2 can be set per SYSEX command : self._send_midi((240, 0, 32, 107, 127, 66, 2, 0 , 16, 112 + padno , padcolor,...
View QuestionLet´s have a look at the definition of the "get_list_item" function. def get_list_item(self, list_name, item_num): try: theList = self.get_list(list_name) if theList is False: return False...
View QuestionHi, you mentioned "Relatve #2" so i guess you use an Arturia Controller, right? Try the Python code below (keep attention to correct indentation) in a reaction (listener "encoder 1" MIDI Channel 7, CC...
View QuestionHi Christian, "self.song().view.selected_track.output_routing_type" is the current routing type class. "self.song().view.selected_track.output_routing_type.display_name" is the name shown in the box you...
View QuestionHi John, thanks for your reply. During the tests, this script was the only one in Ableton. So I activated two other scripts in the preference list before my script, but with same results. When I deselect...
View Question.....best to take it up with them 🙂 Well, I will give it a try. Keep you informed. Dieter
View QuestionTake the button as a listener and write a reaction like this: if self.song().is_playing: self.song().stop_playing() else: self.song().start_playing() Dieter
View Question