1
Contributor
,
/t5/after-effects-discussions/scripting-can-you-show-me-an-example-of-add-animator-properties-to-text-layer-using-extendscript/td-p/10969013
Mar 07, 2020
Mar 07, 2020
Copy link to clipboard
Copied
I want to know the way to add animator properties to a text layer. Can you please show me an example to add RGB Fill color property to a text layer with Range Selector????
Thank you.
TOPICS
Expressions
,
How to
,
Scripting
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
Contributor
,
Mar 07, 2020
Mar 07, 2020
Finally I've figured it out.
var animator = app.project.activeItem.layer(1).Text.Animators.addProperty("ADBE Text Animator");
var fillColor = animator.property("ADBE Text Animator Properties").addProperty("ADBE Text Fill Color");
var selector = animator.property("ADBE Text Selectors").addProperty("ADBE Text Selector");
Community Expert
,
/t5/after-effects-discussions/scripting-can-you-show-me-an-example-of-add-animator-properties-to-text-layer-using-extendscript/m-p/10969176#M105689
Mar 07, 2020
Mar 07, 2020
Copy link to clipboard
Copied
Look at this video about Text Animators.
🎁 Free VFX Bundle (100+ Elements) - https://bit.ly/freevfxbundle Also, click here to check out my latest upload https://goo.gl/p2c43v 🎁 Free VFX Bundle (100+ Elements) - https://bit.ly/freevfxbundle ☄️ VFX Elements Library - http://bit.ly/creatorgalaxy 💜 Join The Community - ...
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Adirai Maji
AUTHOR
Contributor
,
/t5/after-effects-discussions/scripting-can-you-show-me-an-example-of-add-animator-properties-to-text-layer-using-extendscript/m-p/10969219#M105693
Mar 07, 2020
Mar 07, 2020
Copy link to clipboard
Copied
My bad. Sorry.I didn't mentioned it earlier. I was asking how can I do that in scripting.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Contributor
,
LATEST
/t5/after-effects-discussions/scripting-can-you-show-me-an-example-of-add-animator-properties-to-text-layer-using-extendscript/m-p/10969341#M105697
Mar 07, 2020
Mar 07, 2020
Copy link to clipboard
Copied
Finally I've figured it out.
var animator = app.project.activeItem.layer(1).Text.Animators.addProperty("ADBE Text Animator");
var fillColor = animator.property("ADBE Text Animator Properties").addProperty("ADBE Text Fill Color");
var selector = animator.property("ADBE Text Selectors").addProperty("ADBE Text Selector");
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

