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 

A Letter from a Soon-to-Be Former KJV-Only Christian

I’m done addressing KJV-Onlyism at the popular level on December 31, 2024 (with a few little exceptions I mention in my wrap-up video), so I’m clearing out my files—and posting a few scripts that never made it to the channel. I get letters like the one below on a...

Three Reasons a Common Argument against KJV-Onlyism Fails

I'm done addressing KJV-Onlyism at the popular level on December 31, 2024 (with a few little exceptions I mention in my wrap-up video), so I'm clearing out my files—and posting a few scripts that never made it to the channel. I’ve heard many people over the years say...

Breaking My Two-Year Silence* on Confessional Bibliology

Breaking My Two-Year Silence* on Confessional Bibliology

 I just broke my two-year silence regarding Confessional Bibliology with a big video on my channel that you don’t want to miss—a discussion with Drs. John Meade and Will Ross about the recent Reformation Bible Society LXX Conference. I think I need to explain why I’m...

Quick Answer to a Question about Complementarianism

Quick Answer to a Question about Complementarianism

A dear friend of mine recently asked me if complementarianism is used to justify sin. I gave this quick answer: Yes. Just as I think egalitarianism can be used to justify sin, including sexual sin. For example, the guy who really thinks his secretary is hot and knows...

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.