Jump to content

how to remove waiting cursor


Recommended Posts

Link to comment
Share on other sites

hmm, i use this in one of my scripts, donno how it will work with other ones

$lastCursor = MouseGetCursor()

GUISetCursor(14)

my script lines

GUISetCursor($lastCursor)

probably u might try

Func _ClearWaitCursor()
; this function checks for wait cursor and resets it to arrow cursor
    If MouseGetCursor() = 14 Then GUISetCursor(2)
EndFunc

this is based on autoit setcursor , and i am not sure if it will detect any wait cursor (i havent tried much to study the fact, sorry)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...