Re: Uploaded to the Overcards Wiki now
This script is great guys, thanks!!
But how do i set the script to NOT send the summaries to my e-mail? I have no experience at all making scripts and stuff, do I just set the below to BUTTON2 instead of BUTTON1?
; Lets try requesting the summary now.
IfWinExist, ahk_class #32770, Would you like a tournament summary
{
WinGet, idList, List, ahk_class #32770, Would you like a tournament summary
Loop, %idList%
{
winID := idList%a_index%
ControlSend, Button1, {ENTER}, ahk_id%winID%
}
}
|