I tried the code below, and then it would not play at all. var this_var=this; var videoURL = videos/movie1.mp4 this.video.on("added", function() { $("#video")[0].src = videoURL; $("#video")[0].addEventListener('ended',myHandler,false); }, this, true); function myHandler(e) { this_var.gotoAndPlay(22); } //manual return to home button action below// this.home_btn.addEventListener("click", fl_ClickToGoToAndPlayFromFrame_3.bind(this)); function fl_ClickToGoToAndPlayFromFrame_3() { this.gotoAndPlay(22); }
... View more