Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Expressions Create a text value via expression

  • Create a text value via expression

    Posted by Ilya Sire on October 9, 2018 at 3:08 am

    Hi all, how can i make a text that makes dots ……………. via expression?
    for example i have a slider “dot count” to control how many dot it appear..

    Thanks!

    Ilya Sire replied 7 years, 7 months ago 2 Members · 2 Replies
  • 2 Replies
  • Dan Ebberts

    October 9, 2018 at 6:13 am

    Maybe a source text expression like this:


    numDots = effect("Slider Control")("Slider");
    txt = "";
    for (i = 0; i < Math.floor(numDots); i++){
    txt += ".";
    }
    txt

    Dan

  • Ilya Sire

    October 9, 2018 at 6:34 am

    Thank you, it worked

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