Using a layer name in text expression
I have an audio clip as a layer in my project. Let's say its named "20240904-2210.xxx".
I am trying to build a text expression that will take the 2024 and the 09 and the 04, and rewrite it to be: 2024-09-04.
In JavaScript, I can just built a variable & then break it up with substr.
But AE is saying substr is not valid.
How can I break up the audio layer name into separate strings, such as strYear, strMonth, strDay?
At the end, I can just do something like: result = strYear + "-" + strMonth + "-" + strDay
I know this must be super simple, but for some reason, I cannot figure it out. 😕😕
