Archives

Session Box Listener

That’s correct, the listener will not automatically work if you’re using a Reaction to move the session box. If you want the listener to fire when you move it via a Reaction you would need to also add the method call for the session box listener: – The zero inside the parenthesis is the mode […]

How to create a reaction for a button in mode toggle ?

This first one from Glenn is very clever and simple, just add an exit reaction to the first block when applying to a modifier. You could also do this using this method : https://community.remotify.io/questions/question/cycle-through-values-with-1-button/ And for the LED feedback you could simply send this value scaled to 0-127 to the corresponding controller. ie if i range […]

How to create a reaction for a button in mode toggle ?

In a Reaction, if your button sends a Momentary CC, then the Reaction that Listens to that button will fire each time you press AND release your button. Because you want the Reaction to act as a Toggle, you can account for this by making the first Action exit the Reaction whenever the button is […]