Auto Hotkey

by Aug 5, 2008Uncategorized2 comments

When I’m in Windows I use AutoHotkey to perform several common macros. It’s very cool. Try it! After you install, go down to your system tray and right click on the AutoHotkey icon. Choose “Edit Script.” Place these scripts in your file, and make sure to click the icon again (after saving the file) and “Reload Script.” If you make any cool scripts I’d love to have them. I admit that I’ve tried and failed to make a script that will type my username, tab, my password, and return for getting past the Novell Border Manager at work. I can do that in OSX just fine with Spark.

;Type “=d” and this script sends the date (07/19/2008). I use it mainly for dating BibleWorks notes.
:*:=d::
FormatTime,OutputVar,,(MM/dd/yyyy)
SetKeyDelay 0
Send %OutputVar%
return

;This script sends a long line of hyphens if I type “]d”—I use it mainly for BibleWorks notes.
:*:]d::
SetKeyDelay 0
Send ———————————————————————
return

;This is for making an em dash via Alt+-.
!-::
SetKeyDelay 0
Send —
return

;This sends a degree° symbol via Alt+0.
!0::
SetKeyDelay 0
Send °
return

;This causes Windows+Esc to send Alt+F4. A lot easier on your fingers. This is a good one.
#Esc::Send {Alt Down}{F4}{Alt Up}

Read More 

Review: Why I Preach from the Received Text

Review: Why I Preach from the Received Text

Why I Preach from the Received Text is an anthology of personal testimonies more than it is a collection of careful arguments. It is not intended to be academic, and I see nothing necessarily wrong with that. But it does make countless properly academic claims, and...

The First Thing I Ever Wrote That I Still Have

This is so random, and I don't know who would care—but I just stumbled across the very first document I saved in what ultimately became my Dropbox/Academics folder. It was an exercise I wrote for an English class in high school. I was 16 and 3 mos. What I find...

A Little Help for Your Charitableness from Kevin DeYoung

A Little Help for Your Charitableness from Kevin DeYoung

There are few figures on the national evangelical scene that I like and trust more than Kevin DeYoung. I think he nails the balance between, on the one hand, graciousness and fairness and charity and, on the other (can anything be on the other hand from...

Review: The Power Broker, by Robert Caro

Review: The Power Broker, by Robert Caro

The Power Broker: Robert Moses and the Fall of New York by Robert A. Caro My rating: 5 of 5 stars Robert Caro is fascinated by power. He has given his life to exploring how it is gained and kept. And in Robert Moses, the subject of this epic book, power looks like the...

Leave a comment.

2 Comments
  1. bolinpath

    Is there an advantage of using Spark over Quicksilver Triggers?

    Are they totally different?

  2. Mark L Ward Jr

    There are two advantages: 1. Quicksilver is not 100% stable. It does quit on me sometimes; Spark never does. 2. Quicksilver cannot, to my knowledge, record a string of keystrokes like Spark. Perhaps there is a plugin which can do this, but I am not aware of it.