Jump to content

Recommended Posts

Posted

Good day,

I require a visual counter to the following:

Func ViewCustomCmdsList()
    WinActivate($hSAWSTUDIO_MAIN)
    ; -----------------------------------------------
    ; Select Custom Cmds button
    Sleep($iTimeOut)
    MouseClick($MOUSE_CLICK_LEFT, 250, 378, 1, 0)
    Sleep(1000)
    ; ---------------------
    ; Select each Cmd in turn
    Sleep($iTimeOut)
    Send("{DOWN +3}")
    For $i = 2 To 26
            Sleep($iDelayTime)
        Send("{DOWN}")
    Next
    ; ---------------------
    Sleep(1000)
    Send("{ESC}")
EndFunc   ;==>ViewCustomCmdsList

Any ideas?

Posted
Func ViewCustomCmdsList()
    WinActivate($hSAWSTUDIO_MAIN)
    ; -----------------------------------------------
    ; Select Custom Cmds button
    Sleep($iTimeOut)
    MouseClick($MOUSE_CLICK_LEFT, 250, 378, 1, 0)
    Sleep(1000)
    ; ---------------------
    ; Select each Cmd in turn
    Sleep($iTimeOut)
    Send("{DOWN +3}")
    For $i = 2 To 26
            ToolTip(" from 26", -1, -1, $i )
            Sleep($iDelayTime)
        Send("{DOWN}")
    Next
    ; ---------------------
    ToolTip("")
    Sleep(1000)
    Send("{ESC}")
EndFunc   ;==>ViewCustomCmdsList

 Merry Christmas and a happy new year

🎄

I know that I know nothing

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
×
×
  • Create New...