Video actions built into actions

There is Mp3 control. Why not video?

1 Like

Thanks for the request. Basic video start times can be controlled by moving the video on the video track. For now, further control entails giving your video element a unique element ID, and then using the javascript <video> element API.

Example to play:

hypeDocument.getElementById("myVideoID").play();

Example to pause:

hypeDocument.getElementById("myVideoID").pause();

1 Like