Hi I am trying to have my adobe edge animation sync with the timecode of an html5 video. Sort of similiar to http://www.edgehero.com/tutorials/videotimetrigger, but I want the edge animation to map to the video timeline. So when you scrub video the animation scrubs as well? I already tried to use something like this
var video = document.getElementById("Stage_my_video"); // video means the div with the name my_video ( id Stage_my_video )
var curtime = video.currentTime;
sym.play(curtime);
But this did not work how I intended. I have feeling there is probably a simple solution.