Changing colors of Novation Launceh Control
Changing colors of Novation Launceh Control
How do I change the color of a button when a standby player starts or stops? I know how to use the use EXEC_SEND_MIDI_SHORTMSG. I used it to initialize the buttons with Applications.OnStartup.
Probably I have to use Others.OnStandbyPlay and Others.OnStandbyStop, but what is to correct syntax to use this in combination with EXEC_SEND_MIDI_SHORTMSG?
Thanks in advance for your help.
Probably I have to use Others.OnStandbyPlay and Others.OnStandbyStop, but what is to correct syntax to use this in combination with EXEC_SEND_MIDI_SHORTMSG?
Thanks in advance for your help.
Re: Changing colors of Novation Launceh Control
I don’t own this device, so I guess you need to ask Novation for the exact Midi message command.
But you might also try to search the forum, if I remember correctly someone asked something similar in the past.
But the events are correct.
Maybe see here:
https://www.proppfrexx.radio42.com/foru ... f=9&t=2188
But you might also try to search the forum, if I remember correctly someone asked something similar in the past.
But the events are correct.
Maybe see here:
https://www.proppfrexx.radio42.com/foru ... f=9&t=2188
Bernd - radio42
ProppFrexx ONAIR - The Playout and Broadcast Automation Solution
ProppFrexx ONAIR - The Playout and Broadcast Automation Solution
Re: Changing colors of Novation Launch Control
Thanks for your help. It is not exactly what I meant. I have got the EXEC_SEND_MIDI_SHORTMSG working. I use it with Applications.OnStartup.
What I want to know is what to fill in for in the fields action and parameter. For example, if I use Others.OnStandbyPlay, what do I have to fill in for Standby Player A?
Can you give me an example?
What I want to know is what to fill in for in the fields action and parameter. For example, if I use Others.OnStandbyPlay, what do I have to fill in for Standby Player A?
Can you give me an example?
Re: Changing colors of Novation Launceh Control
I do not get your question?!
As I don't know the Novation Syntax to change the color of a specific button, how should I give you an example?
The only thing I can tel you, that you can use any of the available Standby-Player macros, e.g. the ${standby1isplaying} one.
But there is no id, index or alike available in that event to identify or map anything to a Novation button.
For cartwall items this is different, as there is for example the ${cartid} macro available for the OnCartPlayed event, which allows you to map an cartId to a button.
But this doesn't exist for Standby-Players.
So far I guess the Launchpad is only for Cartwalls and the LaunchControl for DJ-Players - but not Standby-Players.
But you might use the EXEC_COMMAND2 with the ${standby1isplaying} macro to change the color.
Just write X commands in parallel, e.g.:
EXEC_COMMAND2 ${standby1isplaying}|Equals(1)|EXEC_SEND_MIDI_SHORTMSG ...button1green...
EXEC_COMMAND2 ${standby1isplaying}|Equals(0)|EXEC_SEND_MIDI_SHORTMSG ...button1red...
EXEC_COMMAND2 ${standby2isplaying}|Equals(1)|EXEC_SEND_MIDI_SHORTMSG ...button2green...
EXEC_COMMAND2 ${standby2isplaying}|Equals(0)|EXEC_SEND_MIDI_SHORTMSG ...button2red...
EXEC_COMMAND2 ${standby3isplaying}|Equals(1)|EXEC_SEND_MIDI_SHORTMSG ...button3green...
EXEC_COMMAND2 ${standby3isplaying}|Equals(0)|EXEC_SEND_MIDI_SHORTMSG ...button3red...
...
As I don't know the Novation Syntax to change the color of a specific button, how should I give you an example?
The only thing I can tel you, that you can use any of the available Standby-Player macros, e.g. the ${standby1isplaying} one.
But there is no id, index or alike available in that event to identify or map anything to a Novation button.
For cartwall items this is different, as there is for example the ${cartid} macro available for the OnCartPlayed event, which allows you to map an cartId to a button.
But this doesn't exist for Standby-Players.
So far I guess the Launchpad is only for Cartwalls and the LaunchControl for DJ-Players - but not Standby-Players.
But you might use the EXEC_COMMAND2 with the ${standby1isplaying} macro to change the color.
Just write X commands in parallel, e.g.:
EXEC_COMMAND2 ${standby1isplaying}|Equals(1)|EXEC_SEND_MIDI_SHORTMSG ...button1green...
EXEC_COMMAND2 ${standby1isplaying}|Equals(0)|EXEC_SEND_MIDI_SHORTMSG ...button1red...
EXEC_COMMAND2 ${standby2isplaying}|Equals(1)|EXEC_SEND_MIDI_SHORTMSG ...button2green...
EXEC_COMMAND2 ${standby2isplaying}|Equals(0)|EXEC_SEND_MIDI_SHORTMSG ...button2red...
EXEC_COMMAND2 ${standby3isplaying}|Equals(1)|EXEC_SEND_MIDI_SHORTMSG ...button3green...
EXEC_COMMAND2 ${standby3isplaying}|Equals(0)|EXEC_SEND_MIDI_SHORTMSG ...button3red...
...
Bernd - radio42
ProppFrexx ONAIR - The Playout and Broadcast Automation Solution
ProppFrexx ONAIR - The Playout and Broadcast Automation Solution
Re: Changing colors of Novation Launceh Control
I apologize, you are right, after rereading my text I have to admit that it is not very clear. What I meant was the syntax for this:
EXEC_COMMAND2 ${standby1isplaying}|Equals(1)|EXEC_SEND_MIDI_SHORTMSG ...button1green...
I tested it with this:
EXEC_COMMAND2 ${standby1isplaying}|Equals(1)|EXEC_SEND_MIDI_SHORTMSG 0x90|8|0x29|0x3C
It works, it makes the button 1 green. Many thanks for your help!
EXEC_COMMAND2 ${standby1isplaying}|Equals(1)|EXEC_SEND_MIDI_SHORTMSG ...button1green...
I tested it with this:
EXEC_COMMAND2 ${standby1isplaying}|Equals(1)|EXEC_SEND_MIDI_SHORTMSG 0x90|8|0x29|0x3C
It works, it makes the button 1 green. Many thanks for your help!