When the cursor of the mouse is found on a hotspot, it has to change....
How do I do???
You could put this code in your global repeatedly_execute script:
if (GetHotspotAt(mouse.x,mouse.y)!=0) {
SetMouseCursor(your hotspot-cursor number);
} else {
SetDefaultCursor();
}