0
After Effects 2015のスクリプトを記述します。ポイント式コントローラから座標のデータをレイヤの位置データにコピーしようとしています。 Expression Controllerの値を指す方法を見つけることができないようです。After Effects Script - Expression Controller Coordinates
for (i = 1; i <= app.project.activeItem.selectedLayers[0].property("Effects").numProperties; i++) {
app.project.items[2].layer(i).property("position").setValue(app.project.activeItem.selectedLayers[0].property("Effects").property(i).value);
}
また、私はこれを試してみた:
for (i = 1; i <= app.project.activeItem.selectedLayers[0].property("Effects").numProperties; i++) {
app.project.items[2].layer(i).property("position").setValue(app.project.activeItem.selectedLayers[0].property("Effects").property(i).property("Point").value);
}
任意の助けいただければ幸いです。私はタイプミスをしなかったと期待しています...
ありがとうございます!これは大きな助けとなりました! – user2337615
もう一度ありがとうございます。私はそれを受け入れたと思う...まだSEに慣れている – user2337615