How i can hide the cursor

Cur don't work for me.
So i try to hide the arrow but its didn't hide

I tried:
S.canvas.style.cursor = "none";
S.cursor = 'none';

On an item you can use:

new Circle().center().cur("none")
// or for stage:
new Rectangle(W,H,F.color).center().cur("none")
// or for everything
document.body.style.cursor = "none"

It looks like the canvas cursor is being controlled by CreateJS or ZIM - not sure.

1 Like