Archives

How do I copy parameter value to modifier?

Hi, First off, I’m not a dev. 1. To answer your question The first parameter of any Device is always the On/Off button. A great reference site made by the Remotify team lists the parameters of all native devices, with their min and max value. Below a screenshot of the parameters of the MIDI Effect […]

Mute Sends

CSS can help you in finding the correct code construction whenever you’re unsure. In the next picture I made a temporary Set Name Action from the TRACK submenu to find out how the code points to a Track: As you can see in the “Path Menu”, Track 1 is selected by default (there’s a lot […]

Mute Sends

Hello Glenn, thank you for Loop explenation! Regarding The Custom Code construction looks like this [track].set_data(key, value) [track].get_data(key, default_value) …cant find correct code construction for set/get_data. I try syntax combinations among others: self.song().track.get_data(1, key1, None) self.song().track(1).get_data(key1, None) track.get_data(1, key1, None) track(1).get_data(key1, None) get_data(1, key1, None) But with no results. For example, what is corect code combinaton to […]

TRAKTOR Z1 MKII Led feedback help!

You can set the ‘on’ ‘off’ velocity settings in the input settings of the controller template. These values will be sent back to the button when the attached mapping is sending LED feedback. It’s not possible to set custom velocity values to be sent back outside of this, unless you use the ‘Reactions’ mapping type […]

Control mouse click with Python

So I can have my CSS select Ableton’s Browser, the browser gets selected and gets a black border but even though it is selected I need to click in the browser area with my mouse for my up, down, left and right navigation to work. It is like the Browser is selected but not the […]

Mute Sends

With a Reaction, you can Loop through all the Tracks (or even Visible or Return Tracks) and set a Condition that compares the saved name to that of each Track. For this to work, each Track would need a unique name (or at least a small unique ID). The Loop produces a loop_number that you […]

Mute Sends

“…One option would be to use specific Track Names, so that we can link saved_send_values to the corresponding track_name.” How to get from name of the track the number of the track? Can track be selected by track name or must the number of tack be obtained from the name first? Also, Listener “track name […]