Answered
How to add markers in AfterEffects with CEP/ExtendScript?
Hello. Does anybody know how to add comp markers (at a specific time) to a composition in After Effect with ExtendScript?
Hello. Does anybody know how to add comp markers (at a specific time) to a composition in After Effect with ExtendScript?
OK, I found this out:
// http://docs.aenhancers.com/items/compitem/
var compMarker = new MarkerValue("My Marker 1");
compMarker.duration = 1; compMarker.url = "http://www.adobe.com/aftereffects";
thisComp.markerProperty.setValueAtTime(2, compMarker);
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.