Rollover Hand Cursor Doesn't Work
Hi Adobe,
I keep having glitchy pointer cursor issues where it's there, it's not there, it's there, it's not there.
I have a basic empty button rollover called CLICK for clicktag and it works fine but the pointer cursor keeps turning off. It'll like flicker and then turn off. If I republish the thing 100 times it finally stays...and then it goes off again. What the heck is the solution?
Here's my first frame code for reference:
var frequency = 100;
stage.update();
stage.enableMouseOver();
myLocalTimeline = this;
this.CLICK.addEventListener("mouseover", fl_MouseOverHandler);
function fl_MouseOverHandler() {
myLocalTimeline.CTA.gotoAndStop(1);
}
this.CLICK.addEventListener("mouseout", fl_MouseOutHandler);
function fl_MouseOutHandler() {
myLocalTimeline.CTA.gotoAndStop(2);
}
this.CLICK.addEventListener("click", fl_MouseClickHandler);
function fl_MouseClickHandler() {
window.open("http://www.website.com", "_blank");
}
Still it doesn't work. If anybody has overcome this issue or has any suggestions, I'm all ears. Cuz I'm ready to sum up that Animate is just jenky.
Thanks for reading. ![]()
