[Animate CC] Custom buttons for component video player
Hi,
I used video components to input my video to animate file,
Everythings works great if I use buttons,
but when try to make my own custom buttonst I can`t run it ![]()
I used this code:
if(!this.pauza_click_cbk) {
function pauza_click(evt) {
console.log("Button clicked");
$("#movieClip_1")[0].pause();
}
$("#dom_overlay_container").on("click", "#pauza", pauza_click.bind(this));
this.pauza_click_cbk = true;
}
I need it because I want to make only one my custom button to play and stop video and another to mute and unmute sound.
