Hi!
I'd like to make the mouse cursor disappear and eventually be replaced by another object.
Is it possible?
Thanks in advance <img src="smileys/smiley9.gif" border="0" align="middle" />
Rag
Add a blank event then in the actions side of that event select mouse, set cursor style, none..
Then every tick add your cursor graphic to the mouses x and y position :)
PS sorry if i didn't explain the first part very well, let me know if you need a capx
Yes it's possible!
Insert the Mouse object, then add an event where you set the cursor style to "none".
Here I made a example with comments :) Enjoy
dl.dropbox.com/u/51270524/Custom%20Cursor.capx
You can Set the cursor style and make it invisible.
To replace it with your own sprite, you'd set the sprite's position every tick to the mouse's position (after having added a mouse object).
smitchell: you don't need to set the mouse cursor to invisible every tick like you did (a blank event = every tick).
Only set it on startup it's enough.
Develop games in your browser. Powerful, performant & highly capable.
Thanks everybody, I'll try that!