Suggestion: Timeline Actions - Duration on Pause

Thanks for the request!

The current workaround/recommended method is to use javascript that would have a continue after a delay:

hypeDocument.pauseTimelineNamed('Main Timeline');
window.setTimeout((function () {
    hypeDocument.continueTimelineNamed('Main Timeline', hypeDocument.kDirectionForward, false);
}), 2000); // time to resume in ms
2 Likes