PLEASE! getting back to menu when video is done
I have used this code in the past to return to main menu of a simple HTML5 canvas video player interactive before but now it won't work. (actions layer code on video player frame)
this.stop();
var root = this;
this.movie01.on("added", function() {
$("#movie01").on("ended", function() {
movetoMenu();
});
});
function movetoMenu() {
console.log("go back to menu");
root.gotoAndStop(0);
}
What am I missing or doing wrong, PLEASE? Should be so simple.
