Filter's LSB based on original value

I wanted to scale down all LSB and RSB when experimenting with some instances.

I tried Transformations; ScaleX: 120; LSB: -5; RSB: -5; but this seems to set LSB to -5, I would like to have something like LSB: -=5

meaning that if LSB would originally be 50 with these settings it would be 45. *= operator might be useful as well.

Thanks!

You need to remove the space between the LSB: and the -5:

LSB:-5

Similarly, you can have LSB:+5, LSB:*5, and LSB:/5

1 Like

got stuck here again, so be careful of white space!

works:
Transformations;LSB:*1.2;RSB:*1.2;ScaleX:95;

but this doesn’t:
Transformations;LSB: *1.2;RSB: *1.2;ScaleX:95;

could the parser be fixed? It seems like the kind of typo that is hard to spot but this situation can be easily avoided

I’ll have a look.