Forum Moderators: not2easy
You could use CSS, the cursor [w3.org] property. I haven’t tested myself, but it is suppose to accept an URI for the user agent to download the cursor.
* {cursor: url(mycursor.cur);}
Hope it helps. Let us know if it worked.
<style type="text/css">
<!--
body {
cursor: url("arrow.cur") ;
}
a:hover {
cursor: url("black.cur") ;
}
-->
</style>
the only problem is that there is a split second where it has to locate the rollover image (black.cur)for links and in that split second you slighly see the default cursor with a sand timer.
Not sure if I'll use it, just wanted to see if it could be done and actually work.
I'd show you what it looks like but I don't think they allow it on this forum.