Animation layer not visible
Hi Team,
In Animate CC HTML Canvas Im using video component placed it on the bottom layer an mp4 in the components video application." but the above animation layers not visible please help me. how to solve the issue.
Hi Team,
In Animate CC HTML Canvas Im using video component placed it on the bottom layer an mp4 in the components video application." but the above animation layers not visible please help me. how to solve the issue.
As far as I know, videos are loaded on the top of the whole composition (CANVAS) even if they are in a movie clip.
However if you wanted to see it on a click event you could use CSS to hide it and show it. It will still be on the top of everything.
Example:
on load in first frame - I load the video with 0 width and height - then on click even I change to the real size.
setTimeout(function () {
$("#myVideo").css({
"height": 0,
"widht":0
});
}, 10);
then on a click event you would have
this.btn.addEventListener("click", fl_MouseClickHandler.bind(this));
function fl_MouseClickHandler(){
$("#myVideo").css({
"height": 328,
"widht":476
});
}
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.