How to Use the Dropdown Menu in After Effects

  Рет қаралды 51,287

ukramedia

ukramedia

Күн бұрын

Пікірлер: 115
@NerdSyncProductions
@NerdSyncProductions 5 жыл бұрын
Thank you for not just saying what works, but actually explaining why things work or don't work. This is stuff I wish I knew when I was first learning.
@ukramedia
@ukramedia 5 жыл бұрын
Thank you for your kind words, NerdSync!
@fernsehdesign
@fernsehdesign 2 жыл бұрын
Finally some real professional who does not assume everybody is born as a coder, too. I wish Adobe would explain stuff the way you do. Thanks for that.
@sarahmills3989
@sarahmills3989 2 жыл бұрын
i watched so many videos trying to get my drop down to change the color value of a layer and was getting so frustrated. you solved my problem in 2 minutes of scrubbing and watching your code. THANK YOU
@AntonKrinichniy
@AntonKrinichniy 5 жыл бұрын
You're not overexplaining! I've got 0 knowledge in coding. And the way you explain it is probably the only way to explain it to me. Yep, as if I'm 7. Thanks a lot!
@catsband
@catsband 4 жыл бұрын
Absolutely agree
@dozypawz
@dozypawz Жыл бұрын
Where was this video when I was first starting coding. Honestly this has helped me understand scripts so much more.
@tiotito31
@tiotito31 3 жыл бұрын
You're the only person I've been able to find on the internet that bothered explaining what the semicolon is in the expression language. Thank you so much. The detailed explanation helps people learn more thoroughly and quickly.
@GarrickEnright
@GarrickEnright 4 жыл бұрын
I've said it time and time again - Thank you for explaining this to me like i'm a 5-year old. I finally get this.
@mindsize
@mindsize 4 жыл бұрын
I keep coming back to this video. It's hands down the best video on hooking up menus. Thank you Ukramedia
@tiotito31
@tiotito31 3 жыл бұрын
For those having trouble, here's another way he's describing it. This is like algebra. When you're using the term "dropmenu =" it's essentially saying "x equals" where x can be any variable. In this case you're saying dropmenu equals an address: the composition, layer, and effect value. That way instead of having to write the full address in your coding, you can just write "dropmenu"
@processandbeing
@processandbeing Жыл бұрын
Thank you so much! I was 75% thru figuring out how to use this for a client and you got me the rest of the way. My code was just a little off. Love your channel and story!
@BaileyBurritt
@BaileyBurritt 5 жыл бұрын
Thanks, Serg. Honestly, you just cemented the concept of if-else statements for me. I knew them and could create and work with them, but it never clicked like that before. Love your work.
@ukramedia
@ukramedia 5 жыл бұрын
Wow. That's great to hear, Bailey! Thanks for watching the video!
@RoiDeMai
@RoiDeMai 5 жыл бұрын
Thanks a lot, Sergei! The information you provide is quite rare on KZbin. Please keep it up ;)
@ukramedia
@ukramedia 5 жыл бұрын
Thank you for your kind words, Eugene!
@shabbirmerchant7678
@shabbirmerchant7678 3 жыл бұрын
Its great to learn with a tutor who works in Industry. Tips and tricks are nice but efficient tips and tricks are great. Thank you.
@ukramedia
@ukramedia 3 жыл бұрын
Glad it was helpful, Shabbir!
@nickwoolgarfilms
@nickwoolgarfilms 3 жыл бұрын
Only just discovered your channel but your AE tutorials are far and away the best I've seen. Your explanations are so clear, you make expressions and coding make sense in such logical terms. Fantastic work!
@NicolasSeijas
@NicolasSeijas 3 жыл бұрын
Thank you, im doing a map pick overlay for a csgo tournament and this tutorial is all that a needed to make the editable file much easier to work for the editors.
@ЕвгенийЧернов-й3н
@ЕвгенийЧернов-й3н 2 жыл бұрын
A very useful lesson. Thank you very much! You are the best! Special congratulations to Sergey, health and all the best!
@ukramedia
@ukramedia 2 жыл бұрын
Thank you for your kind words, Евгений!
@Georgie-M
@Georgie-M 3 жыл бұрын
I've been looking for something like this all night! thank you so much - way tidier than what I initially thought the solution was too!
@ukramedia
@ukramedia 3 жыл бұрын
Glad it helped, Georgie!
@nyakahumaronald
@nyakahumaronald 4 жыл бұрын
This is totally helpful, the way u explain is pretty legit, if u don't mind show us some more advanced rigging. Thank you
@davewoodhead2452
@davewoodhead2452 2 жыл бұрын
Thanks for taking the time, awesome tutorial.
@daneclassen5366
@daneclassen5366 2 жыл бұрын
This was a great tutorial. I managed to take this info and then use a rbg decimal array to tie a specific color to a value in the dropdown expression. var dropMenu = comp("Main Comp").layer("Expressions Controllers").effect("Dropdown Menu Control")("Menu").value; var bColor = [.1569, .2235, .3412, 1]; var rColor = [.7294, .0196, .0588, 1]; var r2Color = [.9255, .1255, .1529, 1]; if (dropMenu == 1) { color = bColor } else if (dropMenu == 2) { color = rColor; } else if (dropMenu == 3) { color = r2Color }
@SkyScar7
@SkyScar7 4 жыл бұрын
Thanks Sergei! it makes changing artwork a lot easier!
@ukramedia
@ukramedia 4 жыл бұрын
Glad to hear that!
@igorturok1228
@igorturok1228 8 ай бұрын
This is amazing, thank you Sergei
@BigPixelBlues
@BigPixelBlues 3 жыл бұрын
This was super helpful, bless you Sergei!
@ukramedia
@ukramedia 3 жыл бұрын
Glad it was helpful!
@Chapelhillmedia
@Chapelhillmedia 5 жыл бұрын
Good tutorial. It may help code newbies to understand that list items, such as your "dropMenu", are numbered just like you would count them (1, 2, 3, 4). Arrays, such as your "teamNames" can be thought of as a city block. The array name designates the top of the block, and the supplied index indicates how far down the block you want to go. Imagine houses on a street. If you are standing on the corner and you want to go to the location of the first house (on the corner), how many houses down do you need to go? Zero. Therefore, teamNames[0] is the location of the first item ("One"); teamNames[1] is the location of the next item (One house away from the corner). Please forgive the hijacking of your comments for a bonus lesson. :)
@tommyallan9351
@tommyallan9351 5 жыл бұрын
You Legend, Sergei! Great work and thank you for teaching!!!
@ukramedia
@ukramedia 5 жыл бұрын
Thank you for your kind words, Tommy!
@laurenroundy4717
@laurenroundy4717 5 жыл бұрын
Awesome as always. Thanks for great, to-the-point tutorials!
@ukramedia
@ukramedia 5 жыл бұрын
Thank YOU, Lauren!
@edgarciagal13
@edgarciagal13 3 жыл бұрын
excellent video, now you have a new subscriber
@ronnyt5914
@ronnyt5914 2 жыл бұрын
very handy feature, thanks
@erans
@erans 3 жыл бұрын
VERY informative and helpful. thanks!
@JonJagsNee
@JonJagsNee 5 жыл бұрын
THANK YOU, SERGEI
@ukramedia
@ukramedia 5 жыл бұрын
Thank you, Jon!
@dzignerdigital3331
@dzignerdigital3331 2 жыл бұрын
You are a legend !
@GregPlatt
@GregPlatt 8 ай бұрын
So helpful! Thank you for explaining as always!
@sergedruz7261
@sergedruz7261 5 жыл бұрын
Thank you, Sergei, it's a great tutorial.
@ukramedia
@ukramedia 5 жыл бұрын
Thank YOU, Serge!
@solovyovslava
@solovyovslava 4 жыл бұрын
Thank you very much, Sergey! A very useful tutorial!
@ukramedia
@ukramedia 4 жыл бұрын
Thank YOU, Solovyov!
@viruxx
@viruxx 3 жыл бұрын
Awesome explanation! Thank you very much!
@ukramedia
@ukramedia 3 жыл бұрын
Glad it was helpful, Frederik!
@TomMcGuigan-qr9jt
@TomMcGuigan-qr9jt 2 ай бұрын
thank you dude!
@jurizx7985
@jurizx7985 5 жыл бұрын
Hi Sergei, this tutorial is really good like usual...THX :))
@ukramedia
@ukramedia 5 жыл бұрын
Thank YOU!
@chrishooper7179
@chrishooper7179 4 жыл бұрын
Please show your workflow tips for taking 3d sports graphics and compositing team names and colors in AE! Always looking for new ways to do things! love your tutorials and even did your 3D Sports Bumper course on your website. Keep up the great work!
@davidlwinegar
@davidlwinegar 4 жыл бұрын
Thank you! This was amazing!
@_nui_
@_nui_ 4 жыл бұрын
Thanks for this video! Really helped me out
@ukramedia
@ukramedia 4 жыл бұрын
That's great to hear, Nicholas! I'm glad you found it useful!
@maureis
@maureis 5 жыл бұрын
Great video!! congrats. Please feed us with more
@GajuKharche
@GajuKharche 4 жыл бұрын
great tutorials thanks
@markomilanov3860
@markomilanov3860 3 жыл бұрын
Thank you very, very, VERY MUCH!:')
@xfundesign7279
@xfundesign7279 5 жыл бұрын
It´s working ! thank you a lot for your tips and tricks in after effect and blender as well... :))
@ukramedia
@ukramedia 5 жыл бұрын
Thank you for watching my tutorials!
@iamdrewinla3557
@iamdrewinla3557 5 жыл бұрын
Great help! Thanks! Would love to see it rigged in Premiere.
@goranthoren5522
@goranthoren5522 5 жыл бұрын
Awesome stuff! Def show us some more advanced rigging!
@sosweis
@sosweis 2 жыл бұрын
life changer , thanks
@shakils1921
@shakils1921 5 жыл бұрын
Amazing work.
@ukramedia
@ukramedia 5 жыл бұрын
Thank you, Shakil!
@acalsmo
@acalsmo 5 жыл бұрын
Thank you man!
@noicerone
@noicerone 3 жыл бұрын
Saved it for later!
@BLXKMNTN
@BLXKMNTN 3 жыл бұрын
THank you! This was a great learning experience. Question though: When keyframing a dropdown, it sticks to that keyframed dropdown menu item. Further in the composition I'd like to keyframe the menu item to some other item, but it stays showing me the results of the first menu item. Help please?
@brokenstudiotv
@brokenstudiotv 3 жыл бұрын
Thanks for the tutorial! I have a question, is there a way to grab the String text from the selected item on the list? To be more specific, I am trying to setup a Dropdown Menu Control with a bunch of Comp Names, so that for example when I want to access the position of a certain layer from a specific Composition, all I have to do is change the value on the Dropdown Menu so that it references the "String" from that value and in turn gives us the name of that composition. I hope this makes sense, here's an Example of the Expression: compName = effect("Dropdown Menu Control")("Menu") - Somehow this has to reference the "String" of the item selected and not the value. comp(compName).layer("Control").effect("Position")("Point"); - This would then use the compName variable to reference that specific composition's name.
@adiraimaji
@adiraimaji 5 жыл бұрын
Is there any way to add items to Dropdown Menu using expression??
@madebyhaych5925
@madebyhaych5925 5 ай бұрын
Beautifully explained. Thanks for the upload. Have a question though. I worked with a file recently that had two Dropdown Menus, One for the 'Home' Team, a second for the 'Away'. Both referenced logos from only one 'Team Logo' Comp, but each displayed as the selected team from either Dropdown. I tried to read through the expression but it contained Pseudo in the code. Do you have an idea how this was accomplished?
@daviddelayat-dnapictures
@daviddelayat-dnapictures 5 жыл бұрын
Hey Sergei ! Hope you're doing well. Is there a way to fill a dropdown menu with a .csv file ? I can make a script with ES, but if there's something built in it'd be great !
@evaristphi
@evaristphi 5 жыл бұрын
thank you Sir sergei
@ukramedia
@ukramedia 5 жыл бұрын
Thank YOU, Phi Tutorials!
@sudeshprathap
@sudeshprathap 5 жыл бұрын
You are GREATTT! :D
@ukramedia
@ukramedia 5 жыл бұрын
Thank you for your kind words, Sudesh!
@NetoMotion
@NetoMotion 3 жыл бұрын
thanks
@rotationmagnum
@rotationmagnum 2 жыл бұрын
Hello, great tutorial. thanks a lot ! I'm trying to figure out, what happen if we have multiple copy of the same composition in the same main comp. For me impossible to toggle each of them separately, Any idea ? thanks (i'm bad at code)
@T_Armstrong
@T_Armstrong 5 жыл бұрын
Great tutorial. Does anyone know why keyframing doesnt work? As soon as I start to keyframe the dropdown menu, the expression gets killed. comes back when I delete all keyframes.
@alinarangi7826
@alinarangi7826 4 жыл бұрын
awesome...!
@ukramedia
@ukramedia 4 жыл бұрын
Thank you, Ali!
@suancho
@suancho 10 ай бұрын
Thanks! I have a huge list and it will change. I couldn't access the key-value property to make it dinamic. I can only see the value of the dropdown. Do you know how to change the list items name with expressions?
@josephb1884
@josephb1884 4 жыл бұрын
Question - Is it possible to use a .csv or .tsv to change the value of the dropdown to help automate the process of creating these animations rather than do it all manually? I have tried manipulating the dropdown using my limited knowledge of JavaScript, but I can't quite get it to work. Also - Thanks for all of the videos. You have no idea of the positive impact they have made on me. :)
@martinvanhouten
@martinvanhouten 2 жыл бұрын
Thank you for another great tutorial! Still though, there's one question driving me crazy: Is there any possibility to extract the text string from the item names to use them? In your example you were forced to write the team names twice: once in the menu for interface intentions and once in the expression for the actual name shown on the canvas. When you released this video 2 years ago, there seemed to be no solution for this issue. Has this changed in the meantime? Best regards and keep rocking :)
@Leonidas909
@Leonidas909 2 жыл бұрын
I came here to see if this was solved in the video, it is not...
@jo.da.6240
@jo.da.6240 2 жыл бұрын
This was a very helpful tutorial, thanks so much! Just on question: In case I animated the layer's opacity in the pre-comp, is there a way to keep the keyframes because if I use your expression the layer's opacity is either 0 or 100. Is that possible?
@bobvictor1962
@bobvictor1962 3 жыл бұрын
Great video - but I’m having a problem. Followed your instructions and created a control layer and linked every layer in the separate precomp (for mouth sprites); in the precomp, everything works. In the original comp, I made key frames and can see the changes in the composition panel. But when I run it, the mouth sprites do not change. They do change in the precomp but not in the comp. any thoughts?
@cardermedia
@cardermedia 3 ай бұрын
Hi, could I please ask - how do you change text colour with drop-down menus? I’ve been searching for hours and no-one has talked about it online. Hope you can help 👍🏻
@licivarolo
@licivarolo 4 жыл бұрын
Hi Segei. Great video! Whats the name of the "after effect legend" that yo named in the video? Victoria ...? Does she have a KZbin chanel? Thanks!
@kanadiou
@kanadiou 5 жыл бұрын
Nice ! on other video you tell you can change duration ;) it would be a nice trick in video !
@ukramedia
@ukramedia 5 жыл бұрын
Thanks for the feedback! I'll have to do a tutorial on that soon.
@doguztv
@doguztv 2 жыл бұрын
Hi. One thing i have trouble with when learning this type of thing is what is a variable and what is an After Effects command. Since both in your example is using camelCase. I wonder if it would make it a whole lot simpler if you started to make all your variables UPPERCASE. Just so we know it's a variable and not a AE command.
@nathitappan
@nathitappan Жыл бұрын
Dropdown menus driven by other dropdown menus? I'm currently setting up a template that involves 8 different teams with 8 players each. I'm used to the dropdowns driven by opacity and/or lists, but I was curious if you have a good trick to tie one line from a dropdown to drive what is available on the second dropdown. This is what I mean: First dropdown: Team Name (that'll drive colors, and logos). Second dropdown: Team Player (that'll drive player's name and photo). What I'm trying to accomplish is streamlining the second dropdown. Instead of having over 60 names in it with dividers per team, I was hoping to having only displayed the applicable team's players when the first dropdown is used. Does that make sense? I'll keep searching, but I thought I'd ask here too! Thanks for any insight!
@DemoSin
@DemoSin Жыл бұрын
You solved my problems good sr! Have a like and subscribe
@DinuGranaci
@DinuGranaci 5 жыл бұрын
Thank you very mutch Sergei. What is the name Victoria Niss?
@ukramedia
@ukramedia 5 жыл бұрын
Thank YOU, Dinu! Victoria Nece is the Product Manager for motion graphics and visual effects at Adobe. In a previous life, she was a motion designer for documentaries, as well as a developer of scripts and extensions for After Effects
@goodfellas6590
@goodfellas6590 2 жыл бұрын
Hello there! Could you tell me? For example, I want the opacity of one layer to be tied to several Dropdown Menu items! In this lesson, a Dropdown Menu item is attached to each layer! This is so that , for example , the opacity level is broken down by Dropdown Menu items ! Thanks
@gugaestrada
@gugaestrada 2 жыл бұрын
hey, you metioned about Victoria, what´s her social media conecctions?
@AjeetSinghMotion
@AjeetSinghMotion 5 жыл бұрын
please upload this team rig video...
@11305205219
@11305205219 4 жыл бұрын
14:52 maybe teach how to import that in premiere
@shozibdesign9403
@shozibdesign9403 3 жыл бұрын
If I want Drop Down menu for the null object "scale control" Like: Drop Down menu 1= Scale 50% Drop Down menu 2= Scale 100%
@muhamadbagus9327
@muhamadbagus9327 5 ай бұрын
how to change setFont if we use Dropdown menu
@goodfellas6590
@goodfellas6590 2 жыл бұрын
Здраствуйте! Не могли бы подсказать? Я например хочу чтобы непрозрачность одного слоя была привязана к нескольким пунктам Dropdown Menu! В этом уроке для каждого слоя привязывается свой пункт Dropdown Menu! Спасибо !
@goodfellas6590
@goodfellas6590 2 жыл бұрын
Это для того чтобы например уровень непрозрачности был разбит по пунктам Dropdown Menu
@zulfiquarabbas3933
@zulfiquarabbas3933 4 жыл бұрын
This Tutorial was helpful but it was confusing because you named them one, two, three, four
@josearcentales2899
@josearcentales2899 Жыл бұрын
How isn't there a way to directly refer to the text in the dropdown through expression? I know it's simple once you get the hang of it but let's say i need to add another item, then i also need to edit the expression to manually add that item. It almost takes away the benefit of having a dropdown
@stickerman8247
@stickerman8247 2 жыл бұрын
g.o.a.t
@BorsukLIVE
@BorsukLIVE 4 жыл бұрын
value.name?
@LinKaaxMu
@LinKaaxMu Жыл бұрын
Very useful tutorial! Thank you!! 👏
How to Auto-Size Text to a Shape Layer in After Effects
26:38
ukramedia
Рет қаралды 45 М.
Custom dropdown menus - After Effects 2023
7:41
Nick Khoo
Рет қаралды 11 М.
How Much Tape To Stop A Lamborghini?
00:15
MrBeast
Рет қаралды 201 МЛН
風船をキャッチしろ!🎈 Balloon catch Challenges
00:57
はじめしゃちょー(hajime)
Рет қаралды 85 МЛН
Мама у нас строгая
00:20
VAVAN
Рет қаралды 9 МЛН
After Effects Dropdown Menu 101: Two ways to use the expression control
19:54
BallerFX - Sports Motion Design
Рет қаралды 7 М.
sourceRectAtTime(); | After Effects Expressions
34:33
Jake In Motion
Рет қаралды 135 М.
CHEAT Codes in AFTER EFFECTS? 5 Expressions You MUST Know!
9:07
Cinecom.net
Рет қаралды 219 М.
How an Excel Spreadsheet Saved Me Hours in After Effects
13:37
Control Time in Templates - Adobe After Effects tutorial
10:35
After Effects Expressions 307 - Color
11:33
Animoplex
Рет қаралды 42 М.
How to Create Responsive Mogrts for Premiere Pro
43:46
ukramedia
Рет қаралды 53 М.
Math.sin - Adobe After Effects Expression
13:28
ECAbrams
Рет қаралды 183 М.
After Effects: Trigger Animations with Markers (No Keyframes)
14:52
Creative Dojo
Рет қаралды 28 М.
Random Expressions in Adobe After Effects
14:38
ECAbrams
Рет қаралды 138 М.