Thursday, March 21, 2013

Best Place To Swing Dance in Denver!

Overstreet is amazing! They have great classes and a great venue. http://www.overstreetdancegallery.com/

Wednesday, January 23, 2013

AutoHotKey script to disable windows key, capslock, etc for games

Here is a small AutoHotKey script that will disable alt+tab, left windows key, and caps lock while you are in a certain window. It maps them to Alt+F1x so you can map those in the game. F12 then becomes the Windows key for when you need to get out. http://www.autohotkey.com
#ifwinactive World of Warcraft
{
 LWin::!F12
 !Tab::!F11
 Capslock::!F10
 F12::LWin
}