Re: Inversion?
Reply #3 –
I remember a command line for Global Mod being shown as an example at one stage - don't remember where but it basically multiplied the Pos by -1...
Note Pos*=-1
This will invert around the centre line of the staff, 'B' on a treble staff... If you want to invert around another note you need to be a little more creative...
Easiest way I can think of is to move everything up or down till the centre line is the middle of the inversion you want, multiply by -1 and reposition the selection back to where it started...
E.G if you wanted to invert around a treble D, lower everything by '2', multiply by '-1' and move everything back up by '2'
Note Pos-=2 Note Pos*=-1 Note Pos+=2
Note that case and spaces are significant!
Chords will take a little more thought...