This content has been marked as final.
Show 1 reply
-
1. Re: How to jump to a specific cue points in a video?
vivekuma Dec 2, 2014 12:15 AM (in response to Guy Lev)You can create an object with key having the names of the button element and value having the time-position in the video, and then can have the below code:
sym.$("my_video_element")[0].currentTime = cuePoint["btn_name"];
in the click event handler for each button.
Object would be similar to:
var cuePoint = {"btn1": 5, "btn2": 10, "btn3": 20, "btn4": 40}
hth,
Vivekuma


