Skip to main content
alfredmack
Inspiring
March 26, 2020
Question

Change a mouse cursor in Captivate 2019

  • March 26, 2020
  • 2 replies
  • 670 views

Hi, I'm designing a game which I need to use a "target icon" as my mouse cursor. I know this is possible in Simulation but in this case, I need to change my mouse cursor to "target icon". Anyone with a solution please help. 

This topic has been closed for replies.

2 replies

sabre123
Participating Frequently
March 27, 2020

Sorry, but I don't understand your question.

sabre123
Participating Frequently
March 26, 2020

Try something like:

document.getElementById("cpDocument").style.cursor = "crosshair";

You can use a URL in place of "crosshair" for a custom cursor.

 

I just used the Developer Tools in Chrome to test, so you'll have to try the JS in your project to see if it works. I would use "crosshair" first to see if it works.