Hi,
I am trying to change the color of an object on the stage, but "tint" does´t work at all.
I have already loaded ColorFilter.js in the Script Global.
This is my code:
this.clip.addEventListener("click", colorear.bind(this));
function colorear(evt){
TweenMax.to(this.clip, 0, {easel:{tint:"#000000"}});
}
Does anybody know how can I make it works?
Thank you!