1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

After Effects でマーカーコメントを使ったテロップ

Last updated at Posted at 2020-04-04

テキストレイヤーの Source Text をマーカーのコメントから取得する。
マーカーを通過した時に変更されるのでタイミングが取りやすい。

テキストレイヤーの Source Text に以下の Expression を記述する。

Expression
index=thisLayer.marker.nearestKey(time).index;
if((time<thisLayer.marker.nearestKey(time).time)&&(index!=1)){index--};
thisLayer.marker.key(index).comment;
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?