how can i reverse the value of a fader
-
- Regular
- Posts: 143
- Joined: 21 Mar 2015 02:26
how can i reverse the value of a fader
it goes down for up in the software and i want it to work like a normal fader
Re: how can i reverse the value of a fader
you will have to use a script to inverse the x value.
Sorry if I can't give you a better advice right now.
Sorry if I can't give you a better advice right now.
Formant+Eurorack, PPG wave 2.2, Korg MS-20, etc., EWI 4000s, QuNeo, etc., Mixbus32c, u-he, MadronaLabs, Samplemodeling, NI, etc., iPad2/4/Pro
Re: how can i reverse the value of a fader
Create an expression with a value of 1-x
Now you can map that new expression for a reversed x.
Now you can map that new expression for a reversed x.
"Having no silence in music is like having no black or white in a painting" - Brian Eno
https://soundcloud.com/mrcorba
https://soundcloud.com/mrcorba
-
- Regular
- Posts: 143
- Joined: 21 Mar 2015 02:26
Re: how can i reverse the value of a fader
but what if i have x mapped already ,,,its x*800 its for a mouse position
Re: how can i reverse the value of a fader
If your code now is x*800 then you change is to 800-(x*800) et voila, reversed.
Cheers
MrCorba
Cheers
MrCorba
"Having no silence in music is like having no black or white in a painting" - Brian Eno
https://soundcloud.com/mrcorba
https://soundcloud.com/mrcorba
Re: how can i reverse the value of a fader
why not (1 - x) * 800?
So then you can do:
decl maxValue = 800;
blahblah = (1 - x) * maxValue;
So then you can do:
decl maxValue = 800;
blahblah = (1 - x) * maxValue;
Re: how can i reverse the value of a fader
But now you can do:
decl maxValue = 800;
blahblah = maxValue-(x*maxValue);
decl maxValue = 800;
blahblah = maxValue-(x*maxValue);
"Having no silence in music is like having no black or white in a painting" - Brian Eno
https://soundcloud.com/mrcorba
https://soundcloud.com/mrcorba
-
- Regular
- Posts: 143
- Joined: 21 Mar 2015 02:26
Re: how can i reverse the value of a fader
that brings up another point,,,if i am using a fader to move the mouse position it seams that i only need the x value cause the mouse click is locked on the object i am controlling but i would like to use all the faders range, what it does is goes to 0 around 3/4 the way up well down with the x-1 ,but how can i reduce the mouse x value to make the position of the mouse to move the full distance of lemurs fader?,,,kinda tricky ,i am automating a fader that has no midi functions ,so what i did was found the position then single click to hold it then made position value x.
but it seams that x*600 seams to work the best ,but the y value doesnt need to be used cause it just goes up and down....like i said its a workaround to automate a non automatable function....thanks in advance.....
also the mouse position and click is a good function to fix the window focus problem in cubase ,cause key commands dont work if the mixer is not in focus as well as the project window,,,so u can just put a mouse click before the kc and boom no more clicking the window before using different kc,s
but it seams that x*600 seams to work the best ,but the y value doesnt need to be used cause it just goes up and down....like i said its a workaround to automate a non automatable function....thanks in advance.....
also the mouse position and click is a good function to fix the window focus problem in cubase ,cause key commands dont work if the mixer is not in focus as well as the project window,,,so u can just put a mouse click before the kc and boom no more clicking the window before using different kc,s
Re: how can i reverse the value of a fader
I'm not sure if you're asking a question.....
If you are, could you formulate it a bit more clearly?
If you are, could you formulate it a bit more clearly?
"Having no silence in music is like having no black or white in a painting" - Brian Eno
https://soundcloud.com/mrcorba
https://soundcloud.com/mrcorba
-
- Regular
- Posts: 143
- Joined: 21 Mar 2015 02:26
Re: how can i reverse the value of a fader
ok...i have the fader value as x*600 ,x is controlling the mouse position but not the full range of the fader,as well as being reversed