question for folded tracks and 2 midi controllers

2.25K viewsGeneral
0

hi, again me, I have a problem to parameter my 2 big controllers!
i have 2 8 tracks diy controller, I want the first one controlling always my 8 first tracks and the second always controlling track 9 to 16
the problem is when I have folded tracks on the first one my track 9 is not the first one on the second controller, how would you manage it?
i don’t need to control the folded tracks.

admin Changed status to publish
Attached Files:
0

Hi Ben,
If understand your question correctly, what you want is the offset position number of the second controller to only count the visible tracks?
This isn’t currently possible within the app, however I’ve figured out how you can do this directly in the code (if you’re feeling up to it)

In the code find the line that looks like this:
track_offset = 9
(Make sure it is in the mode that you are using i.e. _mode1 is mode 1)
Then change the line so it looks like this:
track_offset = self.tuple_index(self.song().tracks, self.song().visible_tracks[9])
Note that the track offset number is near the end of the line
The save and reload live, this should now only use visible tracks when setting the offset. See attached also.

admin Changed status to publish
You are viewing 1 out of 7 answers, click here to view all answers.