-
Dropdown Opacity Expression on more than one item.
Usually when I’d like the opacity to turn on for a specific drop down item I will use this expression
if(thisComp.layer(“COLOR CHANGE”).effect(“Dropdown Menu Control”)(“Menu”)==2){100}else{0}
However, iId like the opacity to become 100 for other item numbers as well. I’ve tried a few things like add “or”
if(thisComp.layer(“COLOR CHANGE”).effect(“Dropdown Menu Control”)(“Menu”)==2||3||6){100}else{0}
but it’t not working. Any help?