Page 1 of 1

What am I doing wrong, this seems so basic...

Posted: 21 Dec 2012 23:20
by mh175
(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:

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;
What keeps happening is that var gets stuck at 5, and every time I hit Pad, Fader jumps to 1.

Re: What am I doing wrong, this seems so basic...

Posted: 21 Dec 2012 23:28
by Macciza
Hi

It works fine but your not telling it the right thing . . . .
= is assignment
== is comparison

Try if (Fader.x==0)var=1; etc . . .

Cheers
MM

Re: What am I doing wrong, this seems so basic...

Posted: 21 Dec 2012 23:38
by mh175
Thank you!
I need to look that up again.