What am I doing wrong, this seems so basic...
Posted: 21 Dec 2012 23:20
(see attachment)
I have a project variable 'var'
I have a fader, 'Fader'. The fader has a 5 step grid.
I have a pad, 'pad', that responds to Fader x position, and changes the value of 'var'.
Code for Pad:
What keeps happening is that var gets stuck at 5, and every time I hit Pad, Fader jumps to 1.
I have a project variable 'var'
I have a fader, 'Fader'. The fader has a 5 step grid.
I have a pad, 'pad', that responds to Fader x position, and changes the value of 'var'.
Code for Pad:
Code: Select all
if (Fader.x=0)var=1;
if (Fader.x=.25)var=2;
if (Fader.x=.5)var=3;
if (Fader.x=.75)var=4;
if (Fader.x=1)var=5;