I am trying to change a variable using Manipulate, like this:
var = something;
var =
Manipulate[f[var, {a, b, c}],
{{a, .8}, -1, 1},
{{b, 0}, -1, 1},
{{c, 0}, -1, 1}];
var
I read the Manipulate and the Dynamic tutorial in the Wolfram documentation, but I still can't figure it out.
Does anyone got any clue? Other than, this ?

Manipulate[var = f[var,{a,b,c}],{{a,.8},-1,1},{{b,0},-1,1},{{c,0},-1,1}];is that what you want? – Kuba Oct 31 '18 at 22:06fsupposed to modifyvaror only use it to return a value you will later use to assign tovar? – Kuba Nov 01 '18 at 08:18