0
0

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.

テキストレイヤーの改行をカウントする

Last updated at Posted at 2020-07-25

##テキストレイヤーの中身の改行コードが違った
\nで改行をカウントしようとしたところ全然判定されず、小一時間悩んで調べまくった結果、環境によって改行コードが混在している事が判明。
試しに\rで判定してみたところ無事カウントされたので、参考になれば。
環境:Windows10, AE2019
参考サイト
##サンプルコード

var myComp = app.project.activeItem;
var myLayer = myComp.selectedLayers[0];
var myText = myLayer.property("ADBE Text Properties").property("ADBE Text Document").value;
var Text = myText.toString(myText);
var result = Text.match(/\r/g);
if (!(result === null)) {
  alert(result.length);
} else {
  alert("Nothing");
}

AE_Script.png
##注意点
スクリプトからエクスプレッションを書き込むなら判定のための改行コードは\\rで記述する。
(バックスラッシュ1回だとエクスプレッション中の改行として認識されるため)

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?