View Single Post
  #26  
Old 11-28-2005, 11:43 AM
ilya ilya is offline
Senior Member
 
Join Date: May 2004
Location: Party Poker
Posts: 460
Default Re: Anyone playing 10 tables with the beta software?

[ QUOTE ]
[ QUOTE ]

What I do want though is a macro that would let me go all-in at the press of a button.

[/ QUOTE ]


; Fold
F1::
MouseClick, left, 200, 320
Sleep, 10
MouseClick, left, 200, 340
Sleep, 10
return

; Check/Call
F2::
MouseClick, left, 257, 320
Sleep, 10
MouseClick, left, 257, 340
Sleep, 10
return

; Bet/Raise
F3::
MouseClick, left, 367, 335
Sleep, 10
return

; Push
F4::
MouseClickDrag, left, 227, 300, 243, 300
Sleep, 10
Send,9999
MouseClick, left, 367, 335
Sleep, 10
return

;Reset
Esc::
MouseClickDrag, left, 220, 300, 243, 300
Sleep, 10
return


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; WindowLeft
Left::
CoordMode, Mouse, Relative
MouseMove,-267,200
MouseGetPos, curPosX, curPosY, curWin
WinGetTitle, title, ahk_id %curWin%
WinActivate, %title%
return

; WindowDown
Down::
CoordMode, Mouse, Relative
MouseMove,267,600
MouseGetPos, curPosX, curPosY, curWin
WinGetTitle, title, ahk_id %curWin%
WinActivate, %title%
return

; WindowRight
Right::
CoordMode, Mouse, Relative
MouseMove,800,200
MouseGetPos, curPosX, curPosY, curWin
WinGetTitle, title, ahk_id %curWin%
WinActivate, %title%
return

; WindowUp
Up::
CoordMode, Mouse, Relative
MouseMove,267,-200
MouseGetPos, curPosX, curPosY, curWin
WinGetTitle, title, ahk_id %curWin%
WinActivate, %title%
return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[/ QUOTE ]

Thanks Big...you aren't Skimpin on the Pimpin.
Reply With Quote