Activity › Forums › Adobe After Effects Expressions › How to create Text markers using script?
-
How to create Text markers using script?
Aleks Cicha replied 11 years, 9 months ago 4 Members · 12 Replies
-
Dan Ebberts
October 10, 2014 at 4:48 pmLike this maybe:
var myComp = app.project.activeItem;
var myLayer = myComp.selectedLayers[0];
var t = myLayer.inPoint;
while (t < myLayer.outPoint){
myLayer.property("Marker").addKey(t);
t += myComp.frameDuration*10;
}
Dan
-
Aleks Cicha
October 13, 2014 at 11:32 amwow! That’s amazing! You saved around a day of my work!!!!!
Many thanks Dan!Best,
A.
Reply to this Discussion! Login or Sign Up