How to return to normal pointer after setpointer()

Find quick help here to get you started with Hollywood
Post Reply
amyren
Posts: 352
Joined: Thu May 02, 2019 11:53 am

How to return to normal pointer after setpointer()

Post 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?
PEB
Posts: 567
Joined: Sun Feb 21, 2010 1:28 am

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

Post 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)
amyren
Posts: 352
Joined: Thu May 02, 2019 11:53 am

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

Post 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:
Post Reply