is it possible to make animated cursors ie
normal, over hotspot, click on hotspot a different image for each?
thanks ;D
Paranoia
You could put something in the global repeatedly_execute:
if (GetLocationType(mouse.x,mouse.y)==1) {
SetCursorMode (your_hotspot_cursor_no_here);
} else {
SetCursorMode (your_normal_cursor_here);
}
or you could even do more whizzy stuff with
GetHotspotProperty(GetHotspotAt(mouse.x,mouse.y))
and
GetObjectAt and GetCharacterAt, etc..
thanks SSH i'll give it a try ;D