-
Layer Markers on Text Layer
Hi,
I’m trying to insert layer marker on a text layer from the below script and it works perfectly fine.
But the problem is the marker is placed at the Time interval of 2seconds, which is fine but. if my layer is starting from 5second the Marker has to be placed at 7second but when i run the script the marker is placed at the 2 seconds which is the empty area.
Can you help me on this, the marker has to be placed at “Inpoint(of the layer)+2second”
Thanks,
Much appreciated.var myComp=app.project.activeItem;
var myMarker = new MarkerValue("anything");
myComp.selectedLayers[0].property("Marker").setValueAtTime(2, myMarker);