-
Control opacity with multiple checkbox selections
Hello,
I am doing language versioning and I have been using this expression for controlling which text will be shown for which language https://i.imgur.com/puIGXzB.png
if(comp(“Language”).layer(“Language”).effect(“EN”)(“Checkbox”)==0) 0 else 100;
But now I need particular text to be shown only in some languages but not in others.
How can I extend this expression to include only languages I need. For example, I want to show it when my checkbox is on EN, DE, ES but not show on other ones?
Thank you.