View Single Post
  #2  
Old 10-10-2007, 06:17 PM
fooz fooz is offline
Senior Member
 
Join Date: Nov 2002
Location: Victoria, BC
Posts: 596
Default Re: Chip Reloader (New AHK Script)

For anyone having trouble getting this script working on Party: specifically if the cashier is popping up for you. I fixed it by changing the "Button1" to "Button2" in the follow section of script:

From:

WinWait, Buy-In ahk_class #32770, , 2
if (ErrorLevel <> 0)
return
WinActivate, Buy-In ahk_class #32770
ControlFocus, Button1, Buy-In ahk_class #32770

To:
WinWait, Buy-In ahk_class #32770, , 2
if (ErrorLevel <> 0)
return
WinActivate, Buy-In ahk_class #32770
ControlFocus, Button2, Buy-In ahk_class #32770
Reply With Quote