custom cursor html5 canvas remove arrow when button on stage
Hello great minds,
I'm updating an old actionscript project to html5 canvas.
The project has a custom cursor with a button with an over state.
Once there is a button on the stage, the updated code: stage.canvas.style.cursor = "none"; stops working and the arrow shows.
I can remove the hand when the cursor is over the button by adding: this.button1.cursor = "none";
But the arrow remains on the rest of the stage.
If I use a movie clip instead of a button I still need: stage.enableMouseOver(10); for the mouse over state
which brings the arrow back. Adding: this.stage.cursor = "none"; removes the arrow when hovering over the button but not on the rest of the stage.
I'm wondering if there is a solution to this.
To replicate the original flash I need a mouse over state on either a button or a movie clip.
