Change mouse cursor on rollover or use a custom image for cursor

Hi Billy,

look at CSS (or Javascript if you like) to change the cursor image

CSS

#myElement {
    cursor: url('${resourcesFolderName}/myimage.jpg') !important; // !important just for protection and your image is inside resources folder
}

JAVASCRIPT - use “On Mouse Over”, New Function…

element.style.cursor = "url('')";