-
switch() difficulty
Don’t quite know what is wrong. This expression simply doesn’t work. It aims to set a Tumble parameter depending on a series of choices that live in a Dropdown menu expression controller. The value of the dropdown does carry through, but the switch(xx) and case statements do not work at all. Here is the expression:
xx = thisComp.layer(“OFFSET”).effect(“FLIP MODE”)(“Menu”);
var jjj = 0
switch(xx){
case 1: jjj =0; break;
case 2: jjj =10; break;
case 3: jjj =30; break;
case 4: jjj =50; break;
case 5: jjj =90; break;
case 6: jjj =130; break;
case 7: jjj =180; break;}
jjj;
Any ideas? Many thanks!