-
Multiple DropDown Menu (without overlapping layers)
Hello !
I’m having an issue while i’m trying to bring multiple DropDown Menu to differents texts layers.
So i created 2 dropdown menu. One for 4 differents versions of a text and one for the differents languages i’ll need.For each text version (here languages) i have this expression in the opacity :
dropMenu = comp(“Menu option + Lang “).layer(“Menu option + Lang”).effect(“option”)(1).value;
MenuLang = comp(“Menu option + Lang “).layer(“Menu option + Lang”).effect(“Lang”)(1).value;
if(ManuLang == 5 ){100} else {0};
if(dropMenu == 4 ){100} else {0};And for one text layer, where i need Source text to change i’ve got this one :
dropMenu = comp(“Menu option + Lang “).layer(“Menu option + Lang”).effect(“option”)(1).value;
optiontext = [“Word1″,”Word2”,”Word3 “,” “]optiontext[dropMenu-1]
My issue is, when i change the language or the option in certains cases, the text are overlapping with the other languages.
It’s like AfterEffects choose only one variable instead of take the two.Is there something to do ? 🙂
Thanks a lot !