Creating a pop up window in Animate
I am not familiar with Animate at all and want to create an interactive graphic.
I checked out the tutorial on interactive and animated infographics. In the video about buttons and pop-up windows is not explained how to create the pop-up window. Can someone explain this step by step?
That was the answer to another question:
this.button.addEventListener("click",buttonF.bind(this));
function buttonF(){
if(this.info.alpha<.5){
this.info.alpha=1;
} else {
this.info.alpha=0;
}
}
Unfortunately, I don't understand that either.
