I'm doing a plant growth simulator to teach kids about growing plants. There are threads about changing the pointer such as these ones: JavaScript how to change mouse cursor to an image? How to change the mouse pointer to an Image when clicked on it in c#
However, the concerns are different. What I want to do is have the mouse pointer itself change to the image that was clicked on so it will give something like this:
- click on the shovel in the sidebar and the mouse pointer changes to a shovel
- then the kids click in the place where they would like to dig a hole for their plant and the image of dirt mound will appear where they clicked
- they go back to the sidebar and click on the seeds and the mouse pointer will change from a shovel to a bag of seeds
I don't know if I should be trying to change the pointer on a click event or make the pointer invisible and append a copy of the selected image to it so I would appreciate some help on that.