Click to See Complete Forum and Search --> : Can it be done?


DJRobThaMan
07-21-2003, 02:09 PM
Do you think that it's possible to change the cursor into something else (eg. a picture). I know you can use CSS and change it to a hand and an hourglass and all those boring thigns but I was wondering if you could change it into a picture or maybe even just make it disappear altogether while a picture follows where the cursor should be with the even.x and event.y handlers.


Does anybody know if either of these can be done? If not does anyone have any idea of how something like this could be done?


Thanks



Lata

Khalid Ali
07-21-2003, 02:23 PM
Enter the code below in the head secion of your html page

<style type="text/css">
body{cursor:url('images/3dsmove.cur');}
</style>

I have used "3dsmove.cu

cursor file...you can change it with any other
It works for IE.

DJRobThaMan
07-21-2003, 02:50 PM
Thanks