set_track_property
Modify track properties in Ableton Live, including arming for recording, muting, soloing, setting color, and adjusting routing, using the specified track ID for precise control.
Instructions
set track property
Input Schema
Name | Required | Description | Default |
---|---|---|---|
property | Yes | ||
track_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"property": {
"additionalProperties": false,
"properties": {
"arm": {
"description": "true = track is armed for recording. [not in return/master tracks]",
"type": "boolean"
},
"color": {
"description": "The RGB value of the track's color in \n the form 0x00RRGGBB or (2^16 * red) + (2^8 * green) + blue, where red, \n green and blue are values from 0 (dark) to 255 (light). Example: Red is (2^16 * 255) = 16711680",
"type": "number"
},
"current_input_routing": {
"description": "set the input routing ,such as \"Resampling 3-MIDI 4 Audio\"",
"type": "string"
},
"current_input_sub_routing": {
"type": "string"
},
"current_monitoring_state": {
"type": "number"
},
"current_output_routing": {
"type": "string"
},
"current_output_sub_routing": {
"type": "string"
},
"fired_slot_index": {
"type": "number"
},
"fold_state": {
"description": "0 = tracks within the Group Track are visible, \n 1 = Group Track is folded and the tracks within the Group Track are hidden[only available if is_foldable = 1",
"type": "number"
},
"implicit_arm": {
"type": "boolean"
},
"input_routing_channel": {
"type": "number"
},
"is_showing_chains": {
"type": "number"
},
"mute": {
"type": "boolean"
},
"name": {
"type": "string"
},
"playing_slot_index": {
"type": "number"
},
"solo": {
"description": "solo = true = track is soloed. ",
"type": "boolean"
}
},
"type": "object"
},
"track_id": {
"type": "string"
}
},
"required": [
"track_id",
"property"
],
"type": "object"
}