Thread: PP AHK request
View Single Post
  #14  
Old 08-16-2007, 08:27 PM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: PP AHK request

Try this, let me know what the msgboxes said.

#NoEnv
#Persistent
#SingleInstance force

WinWait PartyPoker.com:
WinGet, pid, pid

msgbox Party found

SetTimer, timer, 1000
return

timer:
WinGet, list, list, Good Luck ahk_pid%pid%
ifEqual, list, 0, msgbox No tables detected!
Loop % list {
WinGet, style, style, % "ahk_id" list%a_index%
msgbox % (Style & 0x40000)
if (Style & 0x40000)
WinSet, Style, -0x40000, % "ahk_id" list%a_index%
}
return
Reply With Quote