yawo
New Member
Posts: 4
Member is Online
|
Post by yawo on Dec 4, 2019 4:36:04 GMT -5
Hello, after trying a lot I found out how to get a led feedback for the tracks in my set that I select with my apc20. I thought I could share my bindings scripts! So I have 16 buttons each assigned to a track: N28 = NOTE, 1, 56 , 5, 127, 1/SEL ; $COLOR$ : WAIT 1 ; MIDIA 144 56 1 N29 = NOTE, 2, 56 , 5, 127, 2/SEL ; $COLOR$ : WAIT 1 ; MIDIA 145 56 1 N30 = NOTE, 3, 56 , 5, 127, 3/SEL ; $COLOR$ : WAIT 1 ; MIDIA 146 56 1 N31 = NOTE, 4, 56 , 5, 127, 4/SEL ; $COLOR$ : WAIT 1 ; MIDIA 147 56 1 and so on... When I click on a button, I also launch a macro to put the same color to all the buttons I use: $COLOR$ = MIDIA 144 56 5 ; MIDIA 145 56 5 ; MIDIA 146 56 5 ; MIDIA 147 56 5 ; I use "MIDIA" because I send a message to my controller managed by the Control Surface scripts XTA. If we use cliphX Pro surface scripts, it would just be "MIDI 11 56 5" At the end, after a waiting time, I add the midi message for color I want ... additional explanations about midi commands here: computermusicresource.com/MIDI.Commands.htmlI hope I made myself clear! It may seem very simple to some people, but I would have liked to find a thread like that to explain it to me, so I did it. And maybe there is another easier way to do it.... I'm really new at this so let me know!
|
|
|
Post by Stray on Dec 4, 2019 7:01:22 GMT -5
Nice work! Thanks for sharing.
|
|
yawo
New Member
Posts: 4
Member is Online
|
Post by yawo on Dec 4, 2019 11:08:57 GMT -5
Thanks to you!
I have a question, I try to alternate between two colors when I click on a button.
For exemple I can change the color of a button from another one like this:
$GrRed$ = MIDIA 151 53 1; MIDIA 151 53 3;
and
N8 = NOTE, 8, 54, 2, 127, (PSEQ) $GrRed$
Ok... but I'd like to change the color of the same button I'm triggering and I can't use the scripts I used before for led feedback because "wait" doesn't work with"(pseq)"...
Do you have any tips to get around this problem?
|
|