How Many Keys to Start Composing an Email

 

I was recently reading Rands in Repose Article Saving Seconds, and took the challenge to how many keystrokes would it take for me to start writing an e-mail message.

My first go was a little bit variable.

It consisted of:

  1. a variable number of CMD-tabs to get to Mail.App
  2. CMD-N to create the message.

After reading the true statement that creating e-mail is a common enough task that it should deserve optimisation, I figured that I'd put in the effort to write the AppleScript to optimise it.  So, with the combination of AppleScript, and Butler, I have ended up with:

  1. a single CMD-OPT-CTRL-M to start up Mail.App (I like using CMD-OPT-CTRL for all my Butler shortcuts).

The AppleScript is simply:

1
tell

    

1
application "Mail"

    

1
activate set newMessage to make new outgoing message with properties {visible:true}

1
end tell

  

 

Related posts:

  1. Forcing the Choice of A Mail Account
  2. ctrl-alt-l in IntelliJ not working in XP with Intel Graphics Controller– problem and solution
  3. Account for Apple Mail.app
  4. div’s to fill the whole screen
  5. Automating Deployment to IBM WebSphere Portal

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

© Rob@Rojotek