• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
1

RTL animation Expression

New Here ,
Mar 31, 2017 Mar 31, 2017

Copy link to clipboard

Copied

Hi, I have an issue with animate my text with an expression but right to left,here is the code:

Expression Selector Based On : Characters

delay = .1;

myDelay = delay*textIndex;

t = (time - inPoint) - myDelay;

if (t >= 0){

  freq =2;

  amplitude = 07;

  decay = 8.0;

  s = amplitude*Math.cos(freq*t*2*Math.PI)/Math.exp(decay*t);

  [s,s]

}else{

  value

}

The problem is my text animates from left to right, I want it to be from right to left.How can I ?

Views

3.8K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Mar 31, 2017 Mar 31, 2017

Modify the delay:

myDelay = delay*(textTotal-textIndex);

Also check your text direction and animator advanced settings.

Mylenium

Votes

Translate

Translate
LEGEND ,
Mar 31, 2017 Mar 31, 2017

Copy link to clipboard

Copied

Modify the delay:

myDelay = delay*(textTotal-textIndex);

Also check your text direction and animator advanced settings.

Mylenium

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 31, 2017 Mar 31, 2017

Copy link to clipboard

Copied

Thank you so much .. it's working!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 19, 2017 Apr 19, 2017

Copy link to clipboard

Copied

LATEST

For what it's worth, today's update to After Effects includes support for RTL text.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines