Archives

Use Live API

I had some help here… Unfortunately it would appear that one can’t load Clip Packs (.als) this way, but it works for devices, clip_slots, samples, .wav file etc. I have User Folders (added in Ableton) ‘LiveDJ’, ‘Songs’ etc. where I have some .wav files. So if the code example from previous post is use, it […]

Use Live API

Hi JohnC, Thanks for getting back to me! So I have this code in a reaction, and it works (It lists all my User Folders in Ableton, and its contents). self.user_folders = self.application().browser.user_folders for folder_index, user_folder in enumerate(self.user_folders): self.log_message(“user_folder [index:” + str(folder_index) + “] [name:” + user_folder.name + “]”) for index, browser_item in enumerate(user_folder.children): self.log_message(“browser_item […]

CSS 3 Logs.txt

Hello John! can you do in Actions Block/ when Actions in custom coding. that the editor does scroll automatic. it almost never stay quiet if you try to do some coding and have several lines. everytime you add something it moves. thanks

Launchkey Pad Colour

OK, managed to make it work. The Launchkey needs to be in DAW mode. To do this, launch a reaction when initializing the script and send raw midi data to the Launchkey. (0x9F, 0xC, 0x7F), optimized = True The encoders listen to cc 21 tot 28 on channel 16 The pads listen to notes 96 […]

Control Surface Studio 3 Is Here!

and CSS3 always connects to free midi ports – and they are not awailable then…. and midi ports monitoring is efficiency spoiling process…. make an option to turn it OFFF please, and an option to select what port CSS3 should listen to in case.

Use Live API

If it’s available in the Live Object Model, you can use it even if its not listed in a Reaction menu. It sounds like adding .children[0] is not the correct syntax.