Open Side Menu Go to the Top
Register
Looking for simple ahk script for full tilt Looking for simple ahk script for full tilt

10-29-2008 , 07:40 PM
Sorry for making a new thread but I've searched through ahk threads and haven't found one that i use for pokerstars. I just need a script which is set up for right click = fold for full tilt poker. Any help with this would be appreciated.
Looking for simple ahk script for full tilt Quote
10-29-2008 , 08:04 PM
I dont think this is possible because you can change the background of your table when you rightclick and you cant reassign it to another key
Looking for simple ahk script for full tilt Quote
10-29-2008 , 09:03 PM
Code:
$RButton::
MouseGetPos, , , id
WinGetClass , class, ahk_id %id%

		ifnotinstring ,class, FTC_TableViewFull
			send {RButton down}
return
$RButton Up::
MouseGetPos, , , id
WinGetClass , class, ahk_id %id%

		ifnotinstring ,class, FTC_TableViewFull
			send {RButton Up}
ControlGet, v, Visible, , FTCSkinButton29, ahk_id%id%
      if (v)
      {
        ControlFocus, FTCSkinButton29, ahk_id%id%
        Sleep, -1
        ControlClick, FTCSkinButton29, ahk_id%id%
      }
      else
      {
        ControlGet, v, Visible, , FTCSkinButton11, ahk_id%id%
        if (v)
        {
          ControlFocus, FTCSkinButton11, ahk_id%id%
          Sleep, -1
          ControlClick, FTCSkinButton11, ahk_id%id%
        }
      }
return
Looking for simple ahk script for full tilt Quote
10-29-2008 , 10:52 PM
Quote:
Originally Posted by rubbishaka80
Code:
$RButton::
MouseGetPos, , , id
WinGetClass , class, ahk_id %id%

		ifnotinstring ,class, FTC_TableViewFull
			send {RButton down}
return
$RButton Up::
MouseGetPos, , , id
WinGetClass , class, ahk_id %id%

		ifnotinstring ,class, FTC_TableViewFull
			send {RButton Up}
ControlGet, v, Visible, , FTCSkinButton29, ahk_id%id%
      if (v)
      {
        ControlFocus, FTCSkinButton29, ahk_id%id%
        Sleep, -1
        ControlClick, FTCSkinButton29, ahk_id%id%
      }
      else
      {
        ControlGet, v, Visible, , FTCSkinButton11, ahk_id%id%
        if (v)
        {
          ControlFocus, FTCSkinButton11, ahk_id%id%
          Sleep, -1
          ControlClick, FTCSkinButton11, ahk_id%id%
        }
      }
return


Thanks a lot! I'll try it out
Looking for simple ahk script for full tilt Quote

      
m