Javascript: playTimeLine in reverse

Hello,
I would like to play a specific Time Line in reverse using Javascript :
Is it possible ?
If so, what's the correct syntax ?
hypeDocument.playTimelineNamed("ShowMore");

In the documentation they've written it out pretty clear: Tumult Hype Documentation

So in case to start a timeline in reverse it's:

hypeDocument.startTimelineNamed('ShowMore', hypeDocument.kDirectionReverse);
4 Likes

Thank you.