Copy link to clipboard
Copied
Hello, I made a banner but when I click many pages are opened, one for each time the banner starts! why? why?
Copy link to clipboard
Copied
show your relevant code.
Copy link to clipboard
Copied
It's quite likely that you're adding the click listener again every times the animation starts. Either loop the animation back to the frame after your listener is added, or first check to see if the listener exists:
if(!this.mybutton.hadEventListener("click",clicked)) this.mybutton.addEventListener("click",clicked);
Or something like that.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now