For anyone who prefers to play from right to left on a MIDI keyboard. Please comment if there are any suggestions.
Attachments:
1532806988840_Invert-Notes.bmtp
SteveC
(Steve)
July 28, 2018, 10:15pm
2
Interesting. Must be quite a challenge to play this way.
New User here. Love it. Not a challange to play inverted if one is Improvising and has decades of muscle memory in the fingers. This was the first result in a forum search for “invert”.
I also found Invert CC and tried editing it to invert notes. (IT WORKED)
I have been running an LUA script in UVI Falcon for this and gave Translator a try.
Unfortunatly the sustain pedal is not being recognized or perhaps it’s not “getting thru”.
More research is needed (and manual reading)
I am attempting to reverse the functions of my sustain pedal, which has inverted polarity against the keyboard it is connected to. It seemed too easy to be true (I just transformed incoming pedal pressed to outgoing pedal unpressed, and vice versa, no rules formulated) and it's only a 50% success- the state (permanently pressed) that I had with the pedal unpressed is gone, but conversely I cannot seem to activate the sustain function when I depress the pedal. Grateful for any pointers!
Attachm…
Hi, and welcome back!
The attached file should do what you want. I set CC21-29 for the incoming drawbars of the translator but you can change that in rules.
The key rule for reversing is taking the incoming value (qq) and subtracting it from 127 to get the outgoing value (also qq in this example)
[image]
Drawsbar-CC-Reverse-2021-08-21.bmtp (1.1 KB)
Have fun!
Steve Caldwell
Bome Customer Care
Also available for paid consulting services: bome@sniz.biz
Hi, I did the following
Disabled your second translator as it is no longer needed.
Translator 0.0 - Renamed and set incoming value to qq
Added 2 rules
// This will ensure everything greater than 0 is seen as 127
if qq>0 then qq=127
// This will toggle the value to the opposite state as the input
qq=qq^127
Then I changed the output value to qq instead of hardcoded to 127
Since you have a default path set, everything else should go through untouched.
Steve Caldwell Bome Q and A Mod…
SteveC
(Steve)
November 2, 2025, 2:01pm
4
@brianbyrne2011
You may try this example of reverse sustain.
Reverse-Sustain-Example-2025-11-02.bmtp (1.1 KB)
Steve Caldwell
Bome Customer Care
Also available for paid consulting services: bome@sniz.biz
1 Like