(* OopsieThings By Shawn Blanc thesweetsetup.com To use: Get your your global AppleScript invoker of choice and set this script to run with same hotkey you use to activate the Quick Entry pane in Things 3. *) on appIsRunning(GTDAppName) tell application "System Events" return (count of (application processes whose name is GTDAppName)) is not 0 end tell end appIsRunning if appIsRunning("Things3") then null else tell application "Things3" activate tell application "Things3" show quick entry panel end tell end tell end if