-
Logical Operator "Or" and Drop Down Menus
Hey Friends,
I am trying to adjust the opacity of a layer using a if/then expression and drop down menus. I would like it if multiple drop down menu options were selected it would adjust the opacity of a layer.
So basically if I select either option 3 or 4 in my drop down menu it will return 100% opacity, if neither of those are selected it returns 0%. I’ve tried to write this as many ways I know how and nothing seems to work. Any thoughts?if(comp("blind_resume_template").layer("blind_resume_control").effect("Sport")("Menu") == 3) || (comp("blind_resume_template").layer("blind_resume_control").effect("Sport")("Menu") == 4)
{100} else 0;