AnimateCC Canvas: Function is Undefined?
Really?
It's defined on the very first frame, see:
function url_PP (){
window.open(pp_URL, "Product_Tab");
}
btw, this produces the same error:
this.url_PP=function(){
window.open(pp_URL, "Product_Tab");
}
So, where is 'url_PP' is undefined coming from?
which is generated from this line on the fourth frame, separate layer:
this.b_PP.addEventListener("click", url_PP);
and the variable is declared a line before that:
pp_URL = "http://www.website.com";
So yes, it is defined, what gives?
Any idea?
Thanks!
