-
Please assist me in updating this time remap marker expression
Can anybody help me fix this so that I don’t have to type a comment in the marker comment section?
I would love it if I could just replay the precomp animation every time there is a new marker (except for the first one)
// Marker Sync Expression
// Modified expression based on Dan Ebbert's Marker Sync Expression
// Original Version: https://www.motionscript.com/design-guide/marker-sync.htmlsrc = comp("Death_icon").layer("Markers");
n = 0;
if (marker.numKeys > 0) {
n = marker.nearestKey(time).index;
if (marker.key(n).time > time) {
n--;
}
}
if (n == 0) {
0
} else {
m = marker.key(n);
myComment = m.comment;
t = time - m.time;
try {
mark = src.marker.key(myComment);
if (src.marker.numKeys > mark.index) {
tMax = src.marker.key(mark.index + 1).time - mark.time;
} else {
tMax = src.outPoint - mark.time;
}
t = Math.min(t, tMax);
mark.time + t;
}catch (err) {
0
}
}