Hi together,
is there a way to use an If-Or-Statement within a shape script?
"if-else" is not an option, because then I would have to copy the script within the brackets (e.g. if (a=1) {do XY} else if (a=2) {do XY}). I need something like "if (a=1) else if (a=2) {do XY}".
Setting a variable inside the shape script could help me, but I think that this is not possible (e.g. if (a=1) {var1=1}; if (a=2) {var1=1}; if (var1=1) {do XY}).
Any suggestions? Many thanks in advance V.