Goodbye Cashier!
One problem I had until recently was checking the Hold’em Manager sessions tab and/or FullTilt cashier when playing to see how a session was going.
I noticed that simply telling myself I wasn’t going to click either of these wasn’t enough – I needed something more drastic. The end result of this was an AHK script that will close the cashier if it’s opened and minimize Hold’em Manager if I try to look at it (if you use the AHK script remember to start auto-importing before you open it).
I’ve included the AHK script below for those who would like a copy. I’m in the process of writing an article on how to use and write your own AHK scripts so although some of you may not yet be sure what to do with it, I will be putting instructions up in the coming week.
#Persistent
#SingleInstanceSetTimer, NoCashierOrHEM, 300
returnNoCashierOrHEM:
IfWinExist , Cashier
WinClose , Cashier
IfWinExist , Hold’em + Omaha Manager
WinMinimize , Hold’em + Omaha Manager
return

Dude, you are the fucking man. I srsly cannot explain in words how awesome you are for making this.
haha, except that it doesn’t work for HEM as of the latest version (Beta 1.10)
prob has to do with the window name I guess
Just edit the “IfWinExist” line to represent whatever the title of your Hold’em Manager is
This might be the biggest thing in poker history.