View Single Post
  #21  
Old 01-14-2007, 10:34 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: Stars Move to Urgent Table & Auto Time Bank Clicker - New AHK Scr

Hi 1C5,

Hotkeys are easy to set up (once you figure it out the first time [img]/images/graemlins/smile.gif[/img] )

My default hotkeys are what you get in a freshly downloaded BetPot. These are: (pre/flop/turn/river)

Middle Mouse: Pot, Pot, Pot, Pot
Right Mouse: 3/4, 3/4, 2/3, 2/3
Wheel up: increase by 1BB
Wheel down: decrease by 1BB
F13: Fold
CTRL+F14: Call
F14: Raise

and so on...

If you open up the BetPot.ahk in notepad you can see (and edit) these hotkey definitions, they are near the start of the file, after all the site-window-matching stuff is done.

An example looks like this:
<font class="small">Code:</font><hr /><pre>
F13::
Fold(getid())
return
</pre><hr />

I have F13 (non-existant key) bount to one of the extra buttons on my mouse (using logitech UberOptions software), but you can easily change the key used just by editing the first line in the example above - e.g.
<font class="small">Code:</font><hr /><pre>
SPACE::
Fold(getid())
return
</pre><hr />
Would make your spacebar fold on the table returned by getid() - the table under the mouse, by default.

There is a full list of available hotkeys here - take a look.

Hopefully this made some sense [img]/images/graemlins/smile.gif[/img]

dave.
Reply With Quote