Page 1 of 1

How to return to normal pointer after setpointer()

Posted: Sat Apr 10, 2021 1:01 am
by amyren
Using the CreatePointer() and SetPointer() to display a busy pointer works. But how to return to the normal pointer again?

Alternatively, is there a way to show the system busy pointer instead of creating your own pointer?

Re: How to return to normal pointer after setpointer()

Posted: Sat Apr 10, 2021 7:40 am
by PEB
This should create the normal system pointer:
CreatePointer(id, #POINTER, #STDPTR_SYSTEM)

This should create the system's standard busy pointer:
CreatePointer(id, #POINTER, #STDPTR_BUSY)

Re: How to return to normal pointer after setpointer()

Posted: Sat Apr 10, 2021 7:44 pm
by amyren
Yes, just what I was after. Thank you :D

I see now that it is in the docs, which I was reading last night and managed to miss it. :lol: