Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects how do you create this title in after effects?

  • how do you create this title in after effects?

    Posted by Andrew Jung on October 19, 2018 at 1:13 am


    video:
    https://www.youtube.com/watch?v=Z_WtTC-Kd_E&t=32s

    this should be simple but i can’t seem to find a solution.

    i can extrude the title and make it 3d.
    but i can’t change the color gradually like the one in the picture.
    I also want to animate the color change.
    if you look in the video, the title pops up time to time and i was wondering if that is possible with trapcode echo or if it was done with expressions.

    Steve Bentley replied 7 years, 6 months ago 3 Members · 2 Replies
  • 2 Replies
  • Mark Doctor

    October 21, 2018 at 8:10 am

    Its the oldskool methode, of stagging a bunch of text layers at a z-space offset.

    Create a textlayer and add an index-scipt to offset the anchor z-space:

    A = thisComp.layer("YourtextlayerName").index;
    B = index;
    C = B - A;

    Duplicate the layer ~40x times and every duplicated layer will have its own unique z-space. Which in return also can be used for hue, saturation, opacity, etc. Combined with a slider to increase the magnitude, by multipling the “C” value. In this case I would sugest the solid overlay effect and add the script to the opacity.

  • Steve Bentley

    October 22, 2018 at 12:43 am

    There are some plug ins at aescripts.com that automate the step and repeat process to give you the “edge” and they will also let you easily tie into a camera so the perspective can change too. (all things you could do with expressions as well).
    Something that can hang you up when doing this kind of thing (if you’re not used to it). Changing the number of layers above your stacking layers can have an influence on the look since the index number (used in the expressions to offset each successive layer) is the layer number, which changes if you add new a layer above. So one layer referencing another layers’s index number can get its math out of whack if those indexes change, especially if you are using multiples. It’s easy to write code around this but if you are copy and pasting code from somewhere you might not realize this little gotcha. The same goes for randomness – the random seed is the layer index (unless specified in the expression).

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy