Export document as texture is causing me problems
I'm not sure how bad the performance was on mobile devices before they added this option but this isn't working correctly for me. First off if you don't use this Adobe animate wont allow easing on "shape tweens" So now when i'm animating just a mask I have to create a spritesheet that adds K size to my project.
Next I have a rollover button that I cant have shape tweens that have easing, this code isn't working when I use "export document as texture.
var self = this;
stage.enableMouseOver();
this.ctaButton.addEventListener("mouseover", fl_MouseOverHandler);
function fl_MouseOverHandler()
{
self.ctaButton.gotoAndPlay("startAnimation");
}
this.ctaButton.addEventListener("mouseout", fl_MouseOutHandler);
function fl_MouseOutHandler()
{
self.ctaButton.gotoAndPlay("endAnimation");
}
I test my all banners in the activity monitor the cpu usage wasn't out of control why change this? Or why change it so i have no choice in the matter because I need to be able to use easing on my shape tweens.
