hello hello..
i know instead of using setInterval(), we can use delayedCall() for GSAP.. what would be the clearInterval() equivalent in GSAP.
In setInterval() when you declare it in a variable, returns an ID (unique identifier) which is used in clearInterval() to cancel the timer
var intervalID = window.setInterval(animate, 500);
// later called to cancel the timer
window.clearInterval(intervalID);
so my question is..
what is the equivalent in GSAP to cancel a specific delayedCall() instances... since if i use killAll()
//kill only delayedCalls
TweenMax.killAll(false, false, tru